Gentoo Archives: gentoo-commits

From: "Zac Medico (zmedico)" <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r13385 - main/trunk/bin
Date: Thu, 23 Apr 2009 04:53:35
Message-Id: E1LwqwG-0005mQ-QR@stork.gentoo.org
1 Author: zmedico
2 Date: 2009-04-23 04:53:32 +0000 (Thu, 23 Apr 2009)
3 New Revision: 13385
4
5 Modified:
6 main/trunk/bin/ebuild.sh
7 Log:
8 Remove ccache and distcc remove_path_entry code since PATH is always
9 initialized from scratch so there's no danger of accumulation.
10
11
12 Modified: main/trunk/bin/ebuild.sh
13 ===================================================================
14 --- main/trunk/bin/ebuild.sh 2009-04-22 18:28:47 UTC (rev 13384)
15 +++ main/trunk/bin/ebuild.sh 2009-04-23 04:53:32 UTC (rev 13385)
16 @@ -1919,14 +1919,11 @@
17 if ! hasq $EBUILD_SH_ARGS clean depend help info nofetch ; then
18
19 if hasq distcc $FEATURES ; then
20 - [[ -z ${PATH/*distcc*/} ]] && remove_path_entry distcc
21 export PATH="/usr/lib/distcc/bin:$PATH"
22 [[ -n $DISTCC_LOG ]] && addwrite "${DISTCC_LOG%/*}"
23 fi
24
25 if hasq ccache $FEATURES ; then
26 - [[ -z ${PATH/*ccache*/} ]] && remove_path_entry ccache
27 -
28 export PATH="/usr/lib/ccache/bin:$PATH"
29
30 addread "$CCACHE_DIR"