From 800f5c5d43b033d849d265d3942c09a90762439c Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Tue, 13 Nov 2007 18:50:54 +0000 Subject: [PATCH] Again properly fix Darwin strip. --- config/install-sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.5