Place /usr/lib64/ccache in PATH
ccache wasn't being used on fedora as the symlinks are in lib64. Change-Id: I810558799dd2382b36b5112e435b74fd5caa8ccf
This commit is contained in:
parent
b588e4af05
commit
df78cd3dca
@ -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…
Reference in New Issue
Block a user