summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2008-10-09 19:32:20 +0000
committerZac Medico <zmedico@gentoo.org>2008-10-09 19:32:20 +0000
commita7de6484bfc4a1fc21df16f9a66982211e193f1e (patch)
tree3caadf22e5c8cf2079541a11c2832212860946e1 /bin/ebuild.sh
parentIn EbuildFetcher._set_returncode(), don't clean up PORTAGE_BUILDDIR if (diff)
downloadportage-multirepo-a7de6484bfc4a1fc21df16f9a66982211e193f1e.tar.gz
portage-multirepo-a7de6484bfc4a1fc21df16f9a66982211e193f1e.tar.bz2
portage-multirepo-a7de6484bfc4a1fc21df16f9a66982211e193f1e.zip
Bug #240684 - Fix _ebuild_arg_to_phase() to handle the src_prepare phase
so that the default() function is properly created. svn path=/main/trunk/; revision=11664
Diffstat (limited to 'bin/ebuild.sh')
-rwxr-xr-xbin/ebuild.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/bin/ebuild.sh b/bin/ebuild.sh
index 8ee27fc9..7cca4f27 100755
--- a/bin/ebuild.sh
+++ b/bin/ebuild.sh
@@ -1395,6 +1395,9 @@ _ebuild_arg_to_phase() {
unpack)
phase_func=src_unpack
;;
+ prepare)
+ phase_func=src_prepare
+ ;;
configure)
! hasq $eapi 0 1 2_pre1 && \
phase_func=src_configure