summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2009-08-13 21:09:09 +0000
committerJens Arnold <amiconn@rockbox.org>2009-08-13 21:09:09 +0000
commitb736f26fdcf7d09ffec598182c2c8a1f47c7c6c9 (patch)
tree7997e81051eadce0ba8c21bad40e360f706421a1
parentb8693f9908782d6f6d172edddfad9cb6194ebb3b (diff)
downloadrockbox-b736f26fdcf7d09ffec598182c2c8a1f47c7c6c9.zip
rockbox-b736f26fdcf7d09ffec598182c2c8a1f47c7c6c9.tar.gz
rockbox-b736f26fdcf7d09ffec598182c2c8a1f47c7c6c9.tar.bz2
rockbox-b736f26fdcf7d09ffec598182c2c8a1f47c7c6c9.tar.xz
Fix ccache auto-detection.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22302 a1c6a512-1295-4272-9138-f99709370657
-rwxr-xr-xtools/configure2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/configure b/tools/configure
index f017843..b7fa988 100755
--- a/tools/configure
+++ b/tools/configure
@@ -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)"