|
1 | 1 | #!/bin/sh
|
2 | 2 | # install - install a program, script, or datafile
|
3 | 3 |
|
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 $ |
5 | 5 |
|
6 | 6 | scriptversion=2005-02-02.21
|
7 | 7 |
|
@@ -59,7 +59,7 @@ chgrpprog="${CHGRPPROG-chgrp}"
|
59 | 59 | # Darwin normal strip removes symbols from shared libraries
|
60 | 60 | # that are later needed for dynamic linking, so use strip -x.
|
61 | 61 | # http://archives.postgresql.org/pgsql-hackers/2007-10/msg01470.php
|
62 |
| -iftest expr"`uname -a`":'Darwin' -ne 0 |
| 62 | +iftest`expr"\`uname -a\`":'Darwin'` -ne 0 |
63 | 63 | thenstripprog="${STRIPPROG-strip -x}"
|
64 | 64 | elsestripprog="${STRIPPROG-strip}"
|
65 | 65 | fi
|
|