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
|
||||
# modern versions don't ship with libcrypto.
|
||||
case $(./config.guess) in
|
||||
case "`./config.guess`" in
|
||||
*-darwin*)
|
||||
LIBCRYPTOFLAGS="--without-openssl"
|
||||
TEST_TARGET=t-exec
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#!/bin/sh
|
||||
|
||||
case $(./config.guess) in
|
||||
case "`./config.guess`" in
|
||||
*-darwin*)
|
||||
brew install automake
|
||||
exit 0
|
||||
|
|
Loading…
Reference in New Issue