summaryrefslogtreecommitdiffstats
path: root/Configure
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2017-03-31 14:37:10 +0200
committerAndy Polyakov <appro@openssl.org>2017-04-01 15:51:18 +0200
commita43cf4c0c00ac09bd83709305b5691c4010dba43 (patch)
tree79a70d56cd24a0a3534b48ac1bee83c5225c72ae /Configure
parentafe2f42bfc72017a075c21b3695feeba6db27305 (diff)
Configure: use 5.10.0, don't require...
Configure started with 'require 5.10.0', but if executed by older perl it failed with "might be runaway multi-line // string" instead of naturally expected "Perl v5.10.0 required--this is only v5.x.y". Reviewed-by: Richard Levitte <levitte@openssl.org> (cherry picked from commit d83112b7fd3b0e751f8a5947e5a93db1cbbe86dc)
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/Configure b/Configure
index cedc160c06..2520d7e135 100755
--- a/Configure
+++ b/Configure
@@ -9,7 +9,7 @@
## Configure -- OpenSSL source tree configuration script
-require 5.10.0;
+use 5.10.0;
use strict;
use File::Basename;
use File::Spec::Functions qw/:DEFAULT abs2rel rel2abs/;