diff options
author | 2002-09-04 18:47:46 +0000 | |
---|---|---|
committer | 2002-09-04 18:47:46 +0000 | |
commit | 60bfa9e971fe47cd0a4a1da3e0a246bd7a86b51f (patch) | |
tree | fbf668f6cf4ef03f0c382d6590870b1f43ef6a5b /lib/libssl/src | |
parent | execute bourne shell scripts with 'sh' and not with $SHELL (diff) | |
download | wireguard-openbsd-60bfa9e971fe47cd0a4a1da3e0a246bd7a86b51f.tar.xz wireguard-openbsd-60bfa9e971fe47cd0a4a1da3e0a246bd7a86b51f.zip |
no need to set $SHELL
Diffstat (limited to 'lib/libssl/src')
-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 f535fdef63a..0976f41f8d6 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\' SHELL=/bin/sh links") == 0 or exit $? + (system "make -f Makefile.ssl PERL=\'$perl\' 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 |