summaryrefslogtreecommitdiff
path: root/deps/openssl/openssl/util/copy.pl
diff options
context:
space:
mode:
Diffstat (limited to 'deps/openssl/openssl/util/copy.pl')
-rw-r--r--deps/openssl/openssl/util/copy.pl3
1 files changed, 2 insertions, 1 deletions
diff --git a/deps/openssl/openssl/util/copy.pl b/deps/openssl/openssl/util/copy.pl
index a6b2a54ec6..9c0e68c414 100644
--- a/deps/openssl/openssl/util/copy.pl
+++ b/deps/openssl/openssl/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, $_;
}