From 2d0c208b438c899904c6cac80512a4ce50ad14d4 Mon Sep 17 00:00:00 2001 From: Daniel Lazzari Jr Date: Fri, 21 Sep 2012 13:52:22 -0700 Subject: [PATCH] Use the PATH variable in the generated environment script, rather than the current value of the PATH variable. This prevents later changes to a user's PATH from being stomped by the generated environment script. --- oebb.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/oebb.sh b/oebb.sh index d2a7836820c..a7a58764913 100755 --- a/oebb.sh +++ b/oebb.sh @@ -153,9 +153,10 @@ else #-------------------------------------------------------------------------- # Include up-to-date bitbake in our PATH. #-------------------------------------------------------------------------- - export PATH=${OE_SOURCE_DIR}/openembedded-core/scripts:${OE_SOURCE_DIR}/bitbake/bin:${PATH} + OE_EXEC_PATH=${OE_SOURCE_DIR}/openembedded-core/scripts:${OE_SOURCE_DIR}/bitbake/bin + export PATH=${OE_EXEC_PATH}:${PATH} - echo "export PATH=\"${PATH}\"" >> ${OE_ENV_FILE} + echo "export PATH=${OE_EXEC_PATH}:\${PATH}" >> ${OE_ENV_FILE} #-------------------------------------------------------------------------- # Make sure Bitbake doesn't filter out the following variables from our