diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-07-24 10:54:47 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-07-24 10:54:47 +0000 |
commit | bb7b5303a44c41cb036227adb26739f02917ebbe (patch) | |
tree | 03211c023e201c523e0bd2e21e1680d8529930e8 | |
parent | 916ae6acd4bd90da774693e0030f560e1af1b773 (diff) | |
download | drakx-bb7b5303a44c41cb036227adb26739f02917ebbe.tar drakx-bb7b5303a44c41cb036227adb26739f02917ebbe.tar.gz drakx-bb7b5303a44c41cb036227adb26739f02917ebbe.tar.bz2 drakx-bb7b5303a44c41cb036227adb26739f02917ebbe.tar.xz drakx-bb7b5303a44c41cb036227adb26739f02917ebbe.zip |
fix syntax
-rw-r--r-- | perl-install/commands.pm | 2 |
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); } } }; |