Fix ccache auto-detection.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22302 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
b8693f9908
commit
b736f26fdc
1 changed files with 1 additions and 1 deletions
2
tools/configure
vendored
2
tools/configure
vendored
|
@ -2668,7 +2668,7 @@ fi
|
|||
if [ "$ARG_CCACHE" = "1" ]; then
|
||||
echo "Enable ccache for building"
|
||||
ccache="ccache"
|
||||
elif [ "$ARG_CCACHE" = "0" ]; then
|
||||
elif [ "$ARG_CCACHE" != "0" ]; then
|
||||
ccache=`findtool ccache`
|
||||
if test -n "$ccache"; then
|
||||
echo "Found and uses ccache ($ccache)"
|
||||
|
|
Loading…
Reference in a new issue