Browse Source

Improved ccache warnings in parse-config to be more consistent

early
Christian Wiese 17 years ago
parent
commit
ae3ab518b9
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      develop/ccache/parse-config

+ 2
- 2
develop/ccache/parse-config

@ -16,9 +16,9 @@
if [ "$SDECFG_PKG_CCACHE_USEIT" != 1 ]; then
true # skip
elif [ -z "`type -p ccache`" ]; then
echo_warning 'ccache not available, Compiler Cache disabled.'
echo_warning 'Compiler cache disabled! (ccache not available)'
elif [ "$pkg" == gcc ]; then
echo_warning 'Package incompatible with Compiler Cache, disabled.'
echo_warning 'Compiler cache disabled! (package incompatible)'
else
unset ${!CCACHE_*}

Loading…
Cancel
Save