Gentoo Archives: gentoo-commits

From: "Zac Medico (zmedico)" <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r11664 - main/trunk/bin
Date: Thu, 09 Oct 2008 19:32:46
Message-Id: E1Ko1FF-0006jv-B1@stork.gentoo.org
1 Author: zmedico
2 Date: 2008-10-09 19:32:20 +0000 (Thu, 09 Oct 2008)
3 New Revision: 11664
4
5 Modified:
6 main/trunk/bin/ebuild.sh
7 Log:
8 Bug #240684 - Fix _ebuild_arg_to_phase() to handle the src_prepare phase
9 so that the default() function is properly created.
10
11
12 Modified: main/trunk/bin/ebuild.sh
13 ===================================================================
14 --- main/trunk/bin/ebuild.sh 2008-10-09 18:13:31 UTC (rev 11663)
15 +++ main/trunk/bin/ebuild.sh 2008-10-09 19:32:20 UTC (rev 11664)
16 @@ -1395,6 +1395,9 @@
17 unpack)
18 phase_func=src_unpack
19 ;;
20 + prepare)
21 + phase_func=src_prepare
22 + ;;
23 configure)
24 ! hasq $eapi 0 1 2_pre1 && \
25 phase_func=src_configure