summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--maint/release.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/maint/release.pm b/maint/release.pm
index dc937ce..b0fa46e 100644
--- a/maint/release.pm
+++ b/maint/release.pm
@@ -154,7 +154,7 @@ sub CopyFile($$$$) {
close I;
! -x $f or chmod(0755, "$dir/$f") or die "chmod($dir/$f): $!";
} else {
- `cp -a $f $dir/$f`; die if $?;
+ `cp -a "$f" "$dir/$f"`; die if $?;
}
}