Skip to content

Commit 4ea3210

Browse files
committed
Again properly fix Darwin strip.
1 parent 6832927 commit 4ea3210

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

config/install-sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22
# install - install a program, script, or datafile
33

4-
# $PostgreSQL: pgsql/config/install-sh,v 1.6 2007/11/13 18:15:01 momjian Exp $
4+
# $PostgreSQL: pgsql/config/install-sh,v 1.7 2007/11/13 18:50:54 momjian Exp $
55

66
scriptversion=2005-02-02.21
77

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

0 commit comments

Comments
 (0)