mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-07-28 16:24:39 +02: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
|
# 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
|
||||||
|
2
.github/setup_ci.sh
vendored
2
.github/setup_ci.sh
vendored
@ -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…
x
Reference in New Issue
Block a user