From: Zac Medico Date: Thu, 9 Jun 2011 15:11:08 +0000 (-0700) Subject: ebuild.sh: fix libdir for ccache/distcc X-Git-Tag: v2.2.0_alpha39~7 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=dbc9f3cc4c665af6d5db24bd9fb7544ed711d96f;p=portage.git ebuild.sh: fix libdir for ccache/distcc This will fix bug #355283. --- diff --git a/bin/ebuild.sh b/bin/ebuild.sh index 9ca41a62a..8c301d8c9 100755 --- a/bin/ebuild.sh +++ b/bin/ebuild.sh @@ -2118,13 +2118,17 @@ if ! hasq "$EBUILD_PHASE" clean cleanrm ; then PATH=$_ebuild_helpers_path:$PREROOTPATH${PREROOTPATH:+:}/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin${ROOTPATH:+:}$ROOTPATH unset _ebuild_helpers_path + # Use default ABI libdir in accordance with bug #355283. + x=LIBDIR_${DEFAULT_ABI} + [[ -n $DEFAULT_ABI && -n ${!x} ]] && x=${!x} || x=lib + if hasq distcc $FEATURES ; then - PATH="/usr/lib/distcc/bin:$PATH" + PATH="/usr/$x/distcc/bin:$PATH" [[ -n $DISTCC_LOG ]] && addwrite "${DISTCC_LOG%/*}" fi if hasq ccache $FEATURES ; then - PATH="/usr/lib/ccache/bin:$PATH" + PATH="/usr/$x/ccache/bin:$PATH" if [[ -n $CCACHE_DIR ]] ; then addread "$CCACHE_DIR" @@ -2134,6 +2138,8 @@ if ! hasq "$EBUILD_PHASE" clean cleanrm ; then [[ -n $CCACHE_SIZE ]] && ccache -M $CCACHE_SIZE &> /dev/null fi + unset x + if [[ -n $QA_PREBUILT ]] ; then # these ones support fnmatch patterns