summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2009-04-28 08:03:28 +0000
committerZac Medico <zmedico@gentoo.org>2009-04-28 08:03:28 +0000
commit5f038863db115b6c198981145baeadbc68240413 (patch)
tree0c7c816a858f1b978cccbad6efc72506f6a2d4f1
parentcb0d2d041ca677b5a0f8938bca741e20c1e3c27a (diff)
downloadportage-5f038863db115b6c198981145baeadbc68240413.tar.gz
portage-5f038863db115b6c198981145baeadbc68240413.tar.bz2
portage-5f038863db115b6c198981145baeadbc68240413.zip
Put ebuild helpers at the absolute front of the PATH.
svn path=/main/trunk/; revision=13404
-rwxr-xr-xbin/ebuild.sh11
1 files changed, 7 insertions, 4 deletions
diff --git a/bin/ebuild.sh b/bin/ebuild.sh
index 83e79e818..02587d9cb 100755
--- a/bin/ebuild.sh
+++ b/bin/ebuild.sh
@@ -71,8 +71,12 @@ unalias -a
# Unset some variables that break things.
unset GZIP BZIP BZIP2 CDPATH GREP_OPTIONS GREP_COLOR GLOBIGNORE
-export PATH="/usr/local/sbin:/sbin:/usr/sbin:$PORTAGE_BIN_PATH/ebuild-helpers:/usr/local/bin:/bin:/usr/bin:${ROOTPATH}"
-[ ! -z "$PREROOTPATH" ] && export PATH="${PREROOTPATH%%:}:$PATH"
+ROOTPATH=${ROOTPATH##:}
+ROOTPATH=${ROOTPATH%%:}
+PREROOTPATH=${PREROOTPATH##:}
+PREROOTPATH=${PREROOTPATH%%:}
+PATH=$PORTAGE_BIN_PATH/ebuild-helpers:$PREROOTPATH${PREROOTPATH:+:}/usr/local/sbin:/sbin:/usr/sbin:/usr/local/bin:/bin:/usr/bin${ROOTPATH:+:}$ROOTPATH
+export PATH
source "${PORTAGE_BIN_PATH}/isolated-functions.sh" &>/dev/null
@@ -1913,8 +1917,7 @@ ebuild_main() {
;;
esac
- export PATH="/usr/local/sbin:/sbin:/usr/sbin:${ebuild_helpers_path}:/usr/local/bin:/bin:/usr/bin:${ROOTPATH}"
- [[ -n $PREROOTPATH ]] && export PATH="${PREROOTPATH%%:}:$PATH"
+ PATH=$ebuild_helpers_path:$PREROOTPATH${PREROOTPATH:+:}/usr/local/sbin:/sbin:/usr/sbin:/usr/local/bin:/bin:/usr/bin${ROOTPATH:+:}$ROOTPATH
unset ebuild_helpers_path
if ! hasq $EBUILD_SH_ARGS clean depend help info nofetch ; then