projects
/
users
/
simon
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b311b61
)
Again properly fix Darwin strip.
author
Bruce Momjian
<bruce@momjian.us>
Tue, 13 Nov 2007 18:50:54 +0000
(18:50 +0000)
committer
Bruce Momjian
<bruce@momjian.us>
Tue, 13 Nov 2007 18:50:54 +0000
(18:50 +0000)
config/install-sh
patch
|
blob
|
blame
|
history
diff --git
a/config/install-sh
b/config/install-sh
index c3daa3e765e0a256d9aa863ff8240d4db2024102..0ae387858db8b32a026113597fd4ad3f882e44ee 100755
(executable)
--- 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