summaryrefslogtreecommitdiffstats
path: root/bin/ebuild.sh
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2009-02-09 09:02:46 +0000
committerZac Medico <zmedico@gentoo.org>2009-02-09 09:02:46 +0000
commit4dc2dd7ee258cd06972c375fb6785a6a89d391d6 (patch)
treebec81b90b0b0be32936d4181e5a4b3a6722ded89 /bin/ebuild.sh
parent7e2ea092be5eb4001cb7787b7528e0a379834ec2 (diff)
downloadportage-4dc2dd7ee258cd06972c375fb6785a6a89d391d6.tar.gz
portage-4dc2dd7ee258cd06972c375fb6785a6a89d391d6.tar.bz2
portage-4dc2dd7ee258cd06972c375fb6785a6a89d391d6.zip
Remove support for deprecated 2_pre* EAPI values.
svn path=/main/trunk/; revision=12594
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 93558f39e..20bf0d389 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