From patchwork Tue Jan 8 20:31:07 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: buildhistory-diff: prepend to sys.path Date: Tue, 08 Jan 2013 20:31:07 -0000 From: Christopher Larson X-Patchwork-Id: 42341 Message-Id: <1357677067-26082-1-git-send-email-kergoth@gmail.com> To: openembedded-core@lists.openembedded.org Cc: Christopher Larson From: Christopher Larson This ensures that regardless of what else is in our search path, we always use the bitbake corresponding to the running buildhistory-diff command. Signed-off-by: Christopher Larson --- scripts/buildhistory-diff | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/buildhistory-diff b/scripts/buildhistory-diff index 3f27eab..8493da4 100755 --- a/scripts/buildhistory-diff +++ b/scripts/buildhistory-diff @@ -44,7 +44,7 @@ def main(): print("Unable to find bitbake by searching parent directory of this script or PATH") sys.exit(1) - sys.path.extend([newpath, bitbakepath + '/lib']) + sys.path[0:0] = [newpath, bitbakepath + '/lib'] import oe.buildhistory_analysis if len(sys.argv) > 3: