diff options
author | Zac Medico <zmedico@gentoo.org> | 2009-04-23 04:53:32 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2009-04-23 04:53:32 +0000 |
commit | 293577e2a10c71d845659902b856362e513c3f7b (patch) | |
tree | 45801bb42ccf971980337a9e8268dd2c8eb7df16 | |
parent | 9a3788e95fb0a03fbaf1305fe94a32b11265641e (diff) | |
download | portage-293577e2a10c71d845659902b856362e513c3f7b.tar.gz portage-293577e2a10c71d845659902b856362e513c3f7b.tar.bz2 portage-293577e2a10c71d845659902b856362e513c3f7b.zip |
Remove ccache and distcc remove_path_entry code since PATH is always
initialized from scratch so there's no danger of accumulation.
svn path=/main/trunk/; revision=13385
-rwxr-xr-x | bin/ebuild.sh | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/bin/ebuild.sh b/bin/ebuild.sh index 57f1a9e60..357756a4f 100755 --- a/bin/ebuild.sh +++ b/bin/ebuild.sh @@ -1919,14 +1919,11 @@ ebuild_main() { if ! hasq $EBUILD_SH_ARGS clean depend help info nofetch ; then if hasq distcc $FEATURES ; then - [[ -z ${PATH/*distcc*/} ]] && remove_path_entry distcc export PATH="/usr/lib/distcc/bin:$PATH" [[ -n $DISTCC_LOG ]] && addwrite "${DISTCC_LOG%/*}" fi if hasq ccache $FEATURES ; then - [[ -z ${PATH/*ccache*/} ]] && remove_path_entry ccache - export PATH="/usr/lib/ccache/bin:$PATH" addread "$CCACHE_DIR" |