Gentoo Archives: gentoo-commits

From: "Zac Medico (zmedico)" <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r12555 - main/trunk/bin
Date: Sun, 25 Jan 2009 00:18:25
Message-Id: E1LQshi-0002Zh-Ok@stork.gentoo.org
1 Author: zmedico
2 Date: 2009-01-25 00:18:22 +0000 (Sun, 25 Jan 2009)
3 New Revision: 12555
4
5 Modified:
6 main/trunk/bin/ebuild.sh
7 Log:
8 Add messages before and after the src_prepare phase. Thanks to Arfrever for
9 this patch.
10
11
12 Modified: main/trunk/bin/ebuild.sh
13 ===================================================================
14 --- main/trunk/bin/ebuild.sh 2009-01-24 19:14:19 UTC (rev 12554)
15 +++ main/trunk/bin/ebuild.sh 2009-01-25 00:18:22 UTC (rev 12555)
16 @@ -887,8 +887,10 @@
17 trap abort_prepare SIGINT SIGQUIT
18
19 ebuild_phase pre_src_prepare
20 + vecho ">>> Preparing source in $srcdir ..."
21 ebuild_phase src_prepare
22 touch "$PORTAGE_BUILDDIR"/.prepared
23 + vecho ">>> Source prepared."
24 ebuild_phase post_src_prepare
25
26 trap SIGINT SIGQUIT