From: Francesco Chemolli Date: Fri, 13 Nov 2009 13:12:57 +0000 (+0100) Subject: Portability fix: non-GNU diff is not guarranteed to handle the -q switch X-Git-Tag: SQUID_3_2_0_1~578 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=eb192be9f6e5cef6832cbb64ae0bb719054f28a5;p=thirdparty%2Fsquid.git Portability fix: non-GNU diff is not guarranteed to handle the -q switch --- diff --git a/scripts/remove-cfg.sh b/scripts/remove-cfg.sh index 7b5905fd06..f3e997c7c2 100644 --- a/scripts/remove-cfg.sh +++ b/scripts/remove-cfg.sh @@ -18,7 +18,7 @@ fi if test -f $prime then # is the primary config identical to the default? - if diff -q $default $prime > /dev/null + if diff $default $prime > /dev/null then echo " $remover -f $prime"; $remover -f $prime;