[openssl-commits] [openssl] master update
Richard Levitte
levitte at openssl.org
Wed May 4 07:35:25 UTC 2016
The branch master has been updated
via 1697a81bafcc9a65012b62ba01c1661bf40e5edb (commit)
from c6cb8e3ca455d6a23be35bc3e076e91da665a292 (commit)
- Log -----------------------------------------------------------------
commit 1697a81bafcc9a65012b62ba01c1661bf40e5edb
Author: Richard Levitte <levitte at openssl.org>
Date: Tue May 3 23:58:38 2016 +0200
Allow spaces in filenames when using perl's glob
Reviewed-by: Matt Caswell <matt at openssl.org>
-----------------------------------------------------------------------
Summary of changes:
util/copy-if-different.pl | 2 +-
util/copy.pl | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/util/copy-if-different.pl b/util/copy-if-different.pl
index 63a9a05..2bf7835 100755
--- a/util/copy-if-different.pl
+++ b/util/copy-if-different.pl
@@ -18,7 +18,7 @@ my @filelist;
foreach my $arg (@ARGV) {
$arg =~ s|\\|/|g; # compensate for bug/feature in cygwin glob...
- foreach (glob $arg)
+ foreach (glob qq("$arg"))
{
push @filelist, $_;
}
diff --git a/util/copy.pl b/util/copy.pl
index c4bcccd..ef4d870 100644
--- a/util/copy.pl
+++ b/util/copy.pl
@@ -26,7 +26,7 @@ foreach $arg (@ARGV) {
next;
}
$arg =~ s|\\|/|g; # compensate for bug/feature in cygwin glob...
- foreach (glob $arg)
+ foreach (glob qq("$arg"))
{
push @filelist, $_;
}
More information about the openssl-commits
mailing list