diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2002-09-04 18:47:47 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2002-09-04 18:47:47 +0000 |
commit | 478841a1bfe758f0810f8ec89ba765decc0da084 (patch) | |
tree | b06b8ca8b3985c8821671a9e586be9b63b9e3a10 | |
parent | 8cacb5a5ac21f67987ab1b4cce52f746b1423fa2 (diff) |
no need to set $SHELL
-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 |