From: Zac Medico Date: Sat, 9 Aug 2008 10:07:36 +0000 (-0000) Subject: Make eapi*_src_install die since they're not supported. X-Git-Tag: v2.2_rc7~21 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=922392955a62af8850e9a8ee2d12c86b9e185b86;p=portage.git Make eapi*_src_install die since they're not supported. svn path=/main/trunk/; revision=11365 --- 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 \"\$@\" ; }"