[openssl-commits] [openssl] OpenSSL_1_1_0-stable update
Andy Polyakov
appro at openssl.org
Fri Nov 10 08:41:25 UTC 2017
The branch OpenSSL_1_1_0-stable has been updated
via f0e3fca9ee7052a9e4d034f988376b403a839140 (commit)
from 84f870be664e3b94cb3d81809da046a8d9cc2ca0 (commit)
- Log -----------------------------------------------------------------
commit f0e3fca9ee7052a9e4d034f988376b403a839140
Author: Andy Polyakov <appro at openssl.org>
Date: Tue Nov 7 20:59:00 2017 +0100
util/copy.pl: work around glob quirk in some of earlier 5.1x Perl versions.
In earlier 5.1x Perl versions quoting globs works only if there is
white space. If there is none, it's looking for names starting with ".
Reviewed-by: Rich Salz <rsalz at openssl.org>
(Merged from https://github.com/openssl/openssl/pull/4695)
(cherry picked from commit 1097d2a39e3f85d4dac2c4d1c238792d6e1d959f)
-----------------------------------------------------------------------
Summary of changes:
util/copy.pl | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/util/copy.pl b/util/copy.pl
index ef4d870..01964f5 100644
--- a/util/copy.pl
+++ b/util/copy.pl
@@ -26,7 +26,8 @@ foreach $arg (@ARGV) {
next;
}
$arg =~ s|\\|/|g; # compensate for bug/feature in cygwin glob...
- foreach (glob qq("$arg"))
+ $arg = qq("$arg") if ($arg =~ /\s/); # compensate for bug in 5.10...
+ foreach (glob $arg)
{
push @filelist, $_;
}
More information about the openssl-commits
mailing list