From: Paul Eggleton Date: Tue, 13 Dec 2016 07:09:40 +0000 (+1300) Subject: recipetool: add OE lib path X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~23301 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a61d7bf8447b2d2c65eb34315c86086ff35c8bc9;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git 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 Signed-off-by: Ross Burton --- 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)