diff options
author | Bruce Momjian | 2007-11-13 18:50:54 +0000 |
---|---|---|
committer | Bruce Momjian | 2007-11-13 18:50:54 +0000 |
commit | 800f5c5d43b033d849d265d3942c09a90762439c (patch) | |
tree | 079cd51a381fd0f5a80b25ad9e3249a1078b42a8 | |
parent | b311b619588d740b8b602e82629cf57e6e230e44 (diff) |
Again properly fix Darwin strip.
-rwxr-xr-x | config/install-sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/install-sh b/config/install-sh index c3daa3e765..0ae387858d 100755 --- a/config/install-sh +++ b/config/install-sh @@ -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 |