diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2016-12-13 20:09:40 +1300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-12-14 09:56:36 +0000 |
commit | a61d7bf8447b2d2c65eb34315c86086ff35c8bc9 (patch) | |
tree | 1ba324e52bc05e467c2fc0e2d28b7924460ed527 /scripts/recipetool | |
parent | 2724511e18810cc8082c1b028e3b7c8a8b5def56 (diff) | |
download | openembedded-core-contrib-a61d7bf8447b2d2c65eb34315c86086ff35c8bc9.tar.gz |
recipetool: add OE lib path
The autotools code imports oe.package; we weren't experiencing a problem
with this probably due to OE itself adding that path previously.
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'scripts/recipetool')
-rwxr-xr-x | scripts/recipetool | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/recipetool b/scripts/recipetool index 00c9007b1c4..54cbc857dc1 100755 --- a/scripts/recipetool +++ b/scripts/recipetool @@ -73,6 +73,7 @@ def main(): logger.error("Unable to find bitbake by searching parent directory of this script or PATH") sys.exit(1) logger.debug('Found bitbake path: %s' % bitbakepath) + scriptpath.add_oe_lib_path() scriptutils.logger_setup_color(logger, global_args.color) |