mirror of
git://anongit.mindrot.org/openssh.git
synced 2025-01-30 05:32:46 +00:00
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
2
.github/configs
vendored
2
.github/configs
vendored
@ -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
2
.github/setup_ci.sh
vendored
@ -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
Block a user