From a4ed5532a81d2559a232eb5e3c433d8cd6f698a8 Mon Sep 17 00:00:00 2001 From: "Ralf S. Engelschall" Date: Thu, 25 Feb 1999 08:48:52 +0000 Subject: [PATCH] Don't hard-code path to Perl interpreter on shebang line of Configure script. Instead use the usual Shell->Perl transition trick. --- CHANGES | 4 ++++ Configure | 7 ++++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index 19bd019401..684f8f750a 100644 --- a/CHANGES +++ b/CHANGES @@ -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 diff --git a/Configure b/Configure index 6f2ef0f04e..91b3019a36 100755 --- a/Configure +++ b/Configure @@ -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; -- GitLab