diff options
author | 2002-07-18 08:08:36 +0000 | |
---|---|---|
committer | 2002-07-18 08:08:36 +0000 | |
commit | 9f2f3589ec9985fa17121d3d9d617172e93c328a (patch) | |
tree | 7987f6c0c8e1c16fb3e833c1874084328fa2ccd0 | |
parent | - string handling patch from David Holland, minimally modified. Highlights (diff) | |
download | wireguard-openbsd-9f2f3589ec9985fa17121d3d9d617172e93c328a.tar.xz wireguard-openbsd-9f2f3589ec9985fa17121d3d9d617172e93c328a.zip |
use /bin/sh for bourne shell scripts (instead of the $SHELL env var).
ok deraadt@
-rw-r--r-- | lib/libssl/src/Configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libssl/src/Configure b/lib/libssl/src/Configure index 0976f41f8d6..f535fdef63a 100644 --- a/lib/libssl/src/Configure +++ b/lib/libssl/src/Configure @@ -1425,7 +1425,7 @@ if($IsWindows) { EOF close(OUT); } else { - (system "make -f Makefile.ssl PERL=\'$perl\' links") == 0 or exit $? + (system "make -f Makefile.ssl PERL=\'$perl\' SHELL=/bin/sh links") == 0 or exit $? if $symlink; ### (system 'make depend') == 0 or exit $? if $depflags ne ""; # Run "make depend" manually if you want to be able to delete |