Use backticks instead of $(..) for portability.
Older shells (eg /bin/sh on Solaris 10) don't support $() syntax.
This commit is contained in:
parent
958aaa0387
commit
a3c6375555
|
@ -156,7 +156,7 @@ esac
|
||||||
|
|
||||||
# Unless specified otherwise, build without OpenSSL on Mac OS since
|
# Unless specified otherwise, build without OpenSSL on Mac OS since
|
||||||
# modern versions don't ship with libcrypto.
|
# modern versions don't ship with libcrypto.
|
||||||
case $(./config.guess) in
|
case "`./config.guess`" in
|
||||||
*-darwin*)
|
*-darwin*)
|
||||||
LIBCRYPTOFLAGS="--without-openssl"
|
LIBCRYPTOFLAGS="--without-openssl"
|
||||||
TEST_TARGET=t-exec
|
TEST_TARGET=t-exec
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
case $(./config.guess) in
|
case "`./config.guess`" in
|
||||||
*-darwin*)
|
*-darwin*)
|
||||||
brew install automake
|
brew install automake
|
||||||
exit 0
|
exit 0
|
||||||
|
|
Loading…
Reference in New Issue