summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2009-03-11 03:49:16 +0000
committerZac Medico <zmedico@gentoo.org>2009-03-11 03:49:16 +0000
commite1bc0b8512d80d4b80f8e5b1a96a9ec6af1433d7 (patch)
tree19768d6ac2376d653b925d4c822c793e0ee607ea /bin/ebuild.sh
parent (trunk r12593) (diff)
downloadportage-multirepo-e1bc0b8512d80d4b80f8e5b1a96a9ec6af1433d7.tar.gz
portage-multirepo-e1bc0b8512d80d4b80f8e5b1a96a9ec6af1433d7.tar.bz2
portage-multirepo-e1bc0b8512d80d4b80f8e5b1a96a9ec6af1433d7.zip
Remove support for deprecated 2_pre* EAPI values. (trunk r12594)
svn path=/main/branches/2.1.6/; revision=12875
Diffstat (limited to 'bin/ebuild.sh')
-rwxr-xr-xbin/ebuild.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/ebuild.sh b/bin/ebuild.sh
index 93558f39..20bf0d38 100755
--- a/bin/ebuild.sh
+++ b/bin/ebuild.sh
@@ -1378,11 +1378,11 @@ _ebuild_arg_to_phase() {
phase_func=src_unpack
;;
prepare)
- ! hasq $eapi 0 1 2_pre1 2_pre2 && \
+ ! hasq $eapi 0 1 && \
phase_func=src_prepare
;;
configure)
- ! hasq $eapi 0 1 2_pre1 && \
+ ! hasq $eapi 0 1 && \
phase_func=src_configure
;;
compile)
@@ -1428,7 +1428,7 @@ _ebuild_phase_funcs() {
case $eapi in
- 0|1|2_pre1)
+ 0|1)
if [[ $(type -t src_compile) != function ]] ; then
case $eapi in