aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2010-08-30 07:27:58 -0700
committerZac Medico <zmedico@gentoo.org>2010-08-30 07:27:58 -0700
commit501107fa5a689b8203610192e8d52a6b1b3a247e (patch)
tree56c55ba8d84887d1f12b0d7b2d61f3976f9fd4eb /bin
parentMerge branch 'master' of git+ssh://git.overlays.gentoo.org/proj/portage (diff)
downloadportage-501107fa5a689b8203610192e8d52a6b1b3a247e.tar.gz
portage-501107fa5a689b8203610192e8d52a6b1b3a247e.tar.bz2
portage-501107fa5a689b8203610192e8d52a6b1b3a247e.zip
Invert _ebuild_helpers_path EAPI conditional in ebuild.sh.
Diffstat (limited to 'bin')
-rwxr-xr-xbin/ebuild.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/ebuild.sh b/bin/ebuild.sh
index 393c82ebd..feef31809 100755
--- a/bin/ebuild.sh
+++ b/bin/ebuild.sh
@@ -1995,11 +1995,11 @@ if ! hasq "$EBUILD_PHASE" clean cleanrm ; then
if [[ $EBUILD_PHASE != depend ]] ; then
case "$EAPI" in
- 4|4_pre1)
- _ebuild_helpers_path="$PORTAGE_BIN_PATH/ebuild-helpers/4:$PORTAGE_BIN_PATH/ebuild-helpers"
+ 0|1|2|3)
+ _ebuild_helpers_path="$PORTAGE_BIN_PATH/ebuild-helpers"
;;
*)
- _ebuild_helpers_path="$PORTAGE_BIN_PATH/ebuild-helpers"
+ _ebuild_helpers_path="$PORTAGE_BIN_PATH/ebuild-helpers/4:$PORTAGE_BIN_PATH/ebuild-helpers"
;;
esac