Use backticks instead of $(..) for portability.

Older shells (eg /bin/sh on Solaris 10) don't support $() syntax.
This commit is contained in:
Darren Tucker 2021-09-29 19:30:59 +10:00
parent 958aaa0387
commit a3c6375555
2 changed files with 2 additions and 2 deletions

2
.github/configs vendored
View File

@ -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

2
.github/setup_ci.sh vendored
View File

@ -1,6 +1,6 @@
#!/bin/sh
case $(./config.guess) in
case "`./config.guess`" in
*-darwin*)
brew install automake
exit 0