diff options
author | Zac Medico <zmedico@gentoo.org> | 2010-08-30 07:27:58 -0700 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2010-08-30 07:27:58 -0700 |
commit | 501107fa5a689b8203610192e8d52a6b1b3a247e (patch) | |
tree | 56c55ba8d84887d1f12b0d7b2d61f3976f9fd4eb | |
parent | 94b297d1040bb956442ba44de1a9afe5ecb6c8e7 (diff) | |
download | portage-501107fa5a689b8203610192e8d52a6b1b3a247e.tar.gz portage-501107fa5a689b8203610192e8d52a6b1b3a247e.tar.bz2 portage-501107fa5a689b8203610192e8d52a6b1b3a247e.zip |
Invert _ebuild_helpers_path EAPI conditional in ebuild.sh.
-rwxr-xr-x | bin/ebuild.sh | 6 |
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 |