summaryrefslogtreecommitdiffstats
path: root/scripts/recipetool
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2016-12-13 20:09:40 +1300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-12-14 12:30:50 +0000
commit86b55e6026840b3042745a3c4d2f857bf4808d18 (patch)
tree560ac5adfa92a26f456e26eec73680b6790c8e0d /scripts/recipetool
parent275b3fe5f47c5dabb5bd16e916bf6ad9118bee79 (diff)
downloadpoky-86b55e6026840b3042745a3c4d2f857bf4808d18.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. (From OE-Core rev: a61d7bf8447b2d2c65eb34315c86086ff35c8bc9) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/recipetool')
-rwxr-xr-xscripts/recipetool1
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/recipetool b/scripts/recipetool
index 00c9007b1c..54cbc857dc 100755
--- a/scripts/recipetool
+++ b/scripts/recipetool
@@ -73,6 +73,7 @@ def main():
73 logger.error("Unable to find bitbake by searching parent directory of this script or PATH") 73 logger.error("Unable to find bitbake by searching parent directory of this script or PATH")
74 sys.exit(1) 74 sys.exit(1)
75 logger.debug('Found bitbake path: %s' % bitbakepath) 75 logger.debug('Found bitbake path: %s' % bitbakepath)
76 scriptpath.add_oe_lib_path()
76 77
77 scriptutils.logger_setup_color(logger, global_args.color) 78 scriptutils.logger_setup_color(logger, global_args.color)
78 79