Fix ccache auto-detection.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22302 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jens Arnold 2009-08-13 21:09:09 +00:00
parent b8693f9908
commit b736f26fdc

2
tools/configure vendored
View file

@ -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)"