Commit a4ed5532 authored by Ralf S. Engelschall's avatar Ralf S. Engelschall
Browse files

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

script. Instead use the usual Shell->Perl transition trick.
parent 1b3b0a54
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -5,6 +5,10 @@

 Changes between 0.9.1c and 0.9.2

  *) Don't hard-code path to Perl interpreter on shebang line of Configure
     script. Instead use the usual Shell->Perl transition trick.
     [Ralf S. Engelschall]

  *) Make `openssl x509 -noout -modulus' functional also for DSA certificates
     (in addition to RSA certificates) to match the behaviour of `openssl dsa
     -noout -modulus' as it's already the case for `openssl rsa -noout
+6 −1
Original line number Diff line number Diff line
#!/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;