summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/commands.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/commands.pm b/perl-install/commands.pm
index 01890dbfa..11155f593 100644
--- a/perl-install/commands.pm
+++ b/perl-install/commands.pm
@@ -263,7 +263,7 @@ sub cp {
open G, "> $dest" or $force or die "can't create $dest : $!\n";
local $_;
while (<F>) { print G $_ }
- chmod (stat($src))[2], $dest;
+ chmod((stat($src))[2], $dest);
}
}
};