From 4f94f84d8491a2455678402b5c7c92e692a272bc Mon Sep 17 00:00:00 2001 From: Jung-uk Kim Date: Thu, 7 Dec 2017 17:37:15 +0000 Subject: Import OpenSSL 1.0.2n. --- util/copy.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'util/copy.pl') diff --git a/util/copy.pl b/util/copy.pl index a6b2a54ec6f0..9c0e68c41467 100644 --- a/util/copy.pl +++ b/util/copy.pl @@ -19,7 +19,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, $_; } -- cgit v1.2.3