]> granicus.if.org Git - openssl/commitdiff
Configure: use 5.10.0, don't require...
authorAndy Polyakov <appro@openssl.org>
Fri, 31 Mar 2017 12:37:10 +0000 (14:37 +0200)
committerAndy Polyakov <appro@openssl.org>
Sat, 1 Apr 2017 13:51:18 +0000 (15:51 +0200)
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)

Configure

index cedc160c063c8c87b7b2cd495b2d551a1e4b4a13..2520d7e135279e8966f7d38b5cd8885f4b4abf71 100755 (executable)
--- 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/;