Again properly fix Darwin strip.
authorBruce Momjian <bruce@momjian.us>
Tue, 13 Nov 2007 18:50:54 +0000 (18:50 +0000)
committerBruce Momjian <bruce@momjian.us>
Tue, 13 Nov 2007 18:50:54 +0000 (18:50 +0000)
config/install-sh

index c3daa3e765e0a256d9aa863ff8240d4db2024102..0ae387858db8b32a026113597fd4ad3f882e44ee 100755 (executable)
@@ -59,7 +59,7 @@ chgrpprog="${CHGRPPROG-chgrp}"
 # Darwin normal strip removes symbols from shared libraries
 # that are later needed for dynamic linking, so use strip -x.
 # http://archives.postgresql.org/pgsql-hackers/2007-10/msg01470.php
-if test expr "`uname -a`" : 'Darwin' -ne 0
+if test `expr "\`uname -a\`" : 'Darwin'` -ne 0
 then   stripprog="${STRIPPROG-strip -x}"
 else   stripprog="${STRIPPROG-strip}"
 fi