Merge "Place /usr/lib64/ccache in PATH"
This commit is contained in:
commit
e1c28525fc
@ -1,5 +1,7 @@
|
|||||||
# Put ccache in path for known compilers
|
# Put ccache in path for known compilers
|
||||||
if ! [[ "$PATH" =~ "/usr/lib/ccache" ]] ; then
|
for CCACHEDIR in "/usr/lib/ccache" "/usr/lib64/ccache" ; do
|
||||||
export PATH=/usr/lib/ccache:$PATH
|
if ! [[ "$PATH" =~ "$CCACHEDIR" ]] ; then
|
||||||
fi
|
export PATH=$CCACHEDIR:$PATH
|
||||||
|
fi
|
||||||
|
done
|
||||||
export CCACHE_DIR=/tmp/ccache
|
export CCACHE_DIR=/tmp/ccache
|
||||||
|
Loading…
x
Reference in New Issue
Block a user