Merge "Place /usr/lib64/ccache in PATH"
This commit is contained in:
commit
e1c28525fc
1 changed files with 5 additions and 3 deletions
|
@ -1,5 +1,7 @@
|
|||
# Put ccache in path for known compilers
|
||||
if ! [[ "$PATH" =~ "/usr/lib/ccache" ]] ; then
|
||||
export PATH=/usr/lib/ccache:$PATH
|
||||
fi
|
||||
for CCACHEDIR in "/usr/lib/ccache" "/usr/lib64/ccache" ; do
|
||||
if ! [[ "$PATH" =~ "$CCACHEDIR" ]] ; then
|
||||
export PATH=$CCACHEDIR:$PATH
|
||||
fi
|
||||
done
|
||||
export CCACHE_DIR=/tmp/ccache
|
||||
|
|
Loading…
Reference in a new issue