]> code.ossystems Code Review - openembedded-core.git/commit
recipetool: create: add additional extension mechanisms
authorPaul Eggleton <paul.eggleton@linux.intel.com>
Fri, 19 Feb 2016 09:39:01 +0000 (22:39 +1300)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Sun, 21 Feb 2016 09:32:00 +0000 (09:32 +0000)
commit915dea9f89cd737e5ba167c384e8d314c5c23c49
treea37de7a1768b79220435f52d6b57af0345d4ae3a
parent13409a2b899bb74b8060c840b8c7ef8759d099cb
recipetool: create: add additional extension mechanisms

Add a means of extending the dependency extraction for autotools and
cmake.

Note: in order to have this work, you need to have an __init__.py in the
lib/recipetool directory within your layer along with the module
implementing the handlers, and the __init__.py needs to contain:

  # Enable other layers to have modules in the same named directory
  from pkgutil import extend_path
  __path__ = extend_path(__path__, __name__)

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
scripts/lib/recipetool/create_buildsys.py
scripts/lib/recipetool/create_buildsys_python.py