]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Fix bashisms in bootstrap.sh
authorAmos Jeffries <squid3@treenet.co.nz>
Sat, 11 Aug 2012 06:06:34 +0000 (00:06 -0600)
committerAmos Jeffries <squid3@treenet.co.nz>
Sat, 11 Aug 2012 06:06:34 +0000 (00:06 -0600)
bootstrap.sh

index 370c2d876a483111a80d194ccb1e70e164e62066..8864dc6066194fbbd5bfa92e488a5349ef35ac56 100755 (executable)
@@ -94,7 +94,7 @@ bootstrap_libtoolize() {
 }
 
 # On MAC OS X, GNU libtool is named 'glibtool':
-if [ `(uname -s) 2>/dev/null` == 'Darwin' ]
+if [ `uname -s 2>/dev/null` = 'Darwin' ]
 then
   LIBTOOL_BIN="glibtool"
 else