Don't hard-code path to Perl interpreter on shebang line of Configure

script. Instead use the usual Shell->Perl transition trick.
This commit is contained in:
Ralf S. Engelschall
1999-02-25 08:48:52 +00:00
parent 1b3b0a54d1
commit a4ed5532a8
2 changed files with 10 additions and 1 deletions

View File

@@ -1,4 +1,9 @@
#!/usr/local/bin/perl -w
:
eval 'exec perl $0 -S ${1+"$@"}'
if $running_under_some_shell;
##
## Configure -- OpenSSL source tree configuration script
##
require 5.000;
use strict;