diff options
author | Zac Medico <zmedico@gentoo.org> | 2008-08-09 10:07:36 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2008-08-09 10:07:36 +0000 |
commit | 922392955a62af8850e9a8ee2d12c86b9e185b86 (patch) | |
tree | d2ab1a5841bca1de79ab358776a1b7d51080f1fa | |
parent | 11e7477f67d5af0cd40d435520c31812af56f7c8 (diff) | |
download | portage-922392955a62af8850e9a8ee2d12c86b9e185b86.tar.gz portage-922392955a62af8850e9a8ee2d12c86b9e185b86.tar.bz2 portage-922392955a62af8850e9a8ee2d12c86b9e185b86.zip |
Make eapi*_src_install die since they're not supported.
svn path=/main/trunk/; revision=11365
-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 fe1a4f24b..af65f18a6 100755 --- a/bin/ebuild.sh +++ b/bin/ebuild.sh @@ -1451,21 +1451,21 @@ _ebuild_phase_funcs() { eapi0_src_configure () { die "$FUNCNAME is not supported" ; } eapi0_src_compile () { _eapi0_src_compile "$@" ; } eapi0_src_test () { _eapi0_src_test "$@" ; } - eapi0_src_install () { _eapi0_src_install "$@" ; } + eapi0_src_install () { die "$FUNCNAME is not supported" ; } eapi1_pkg_nofetch () { _eapi0_pkg_nofetch "$@" ; } eapi1_src_unpack () { _eapi0_src_unpack "$@" ; } eapi1_src_configure () { die "$FUNCNAME is not supported" ; } eapi1_src_compile () { _eapi1_src_compile "$@" ; } eapi1_src_test () { _eapi0_src_test "$@" ; } - eapi1_src_install () { _eapi0_src_install "$@" ; } + eapi1_src_install () { die "$FUNCNAME is not supported" ; } eapi2_pkg_nofetch () { _eapi0_pkg_nofetch "$@" ; } eapi2_src_unpack () { _eapi0_src_unpack "$@" ; } eapi2_src_configure () { _eapi2_src_configure "$@" ; } eapi2_src_compile () { _eapi2_src_compile "$@" ; } eapi2_src_test () { _eapi0_src_test "$@" ; } - eapi2_src_install () { _eapi0_src_install "$@" ; } + eapi2_src_install () { die "$FUNCNAME is not supported" ; } for x in $default_phases ; do eval "default_$x() { eapi2_$x \"\$@\" ; }" |