summaryrefslogtreecommitdiffstats
path: root/perl-install/commands.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2001-07-24 10:54:47 +0000
committerPascal Rigaux <pixel@mandriva.com>2001-07-24 10:54:47 +0000
commitbb7b5303a44c41cb036227adb26739f02917ebbe (patch)
tree03211c023e201c523e0bd2e21e1680d8529930e8 /perl-install/commands.pm
parent916ae6acd4bd90da774693e0030f560e1af1b773 (diff)
downloaddrakx-backup-do-not-use-bb7b5303a44c41cb036227adb26739f02917ebbe.tar
drakx-backup-do-not-use-bb7b5303a44c41cb036227adb26739f02917ebbe.tar.gz
drakx-backup-do-not-use-bb7b5303a44c41cb036227adb26739f02917ebbe.tar.bz2
drakx-backup-do-not-use-bb7b5303a44c41cb036227adb26739f02917ebbe.tar.xz
drakx-backup-do-not-use-bb7b5303a44c41cb036227adb26739f02917ebbe.zip
fix syntax
Diffstat (limited to 'perl-install/commands.pm')
-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);
}
}
};