From bb7b5303a44c41cb036227adb26739f02917ebbe Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Tue, 24 Jul 2001 10:54:47 +0000 Subject: fix syntax --- perl-install/commands.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'perl-install') 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 () { print G $_ } - chmod (stat($src))[2], $dest; + chmod((stat($src))[2], $dest); } } }; -- cgit v1.2.1