diff options
author | Pascal Rigaux <pixel@mandriva.com> | 1999-07-23 21:15:31 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 1999-07-23 21:15:31 +0000 |
commit | 5a632fe532f355a2583970fefb2ed8ceec6c9460 (patch) | |
tree | 53c1ddbe41a4e8dad28ca4382794803ae177fbc2 /perl-install/commands.pm | |
parent | bc25ea4a6ee8505a77972e2a723607735a4e19f9 (diff) | |
download | drakx-5a632fe532f355a2583970fefb2ed8ceec6c9460.tar drakx-5a632fe532f355a2583970fefb2ed8ceec6c9460.tar.gz drakx-5a632fe532f355a2583970fefb2ed8ceec6c9460.tar.bz2 drakx-5a632fe532f355a2583970fefb2ed8ceec6c9460.tar.xz drakx-5a632fe532f355a2583970fefb2ed8ceec6c9460.zip |
no_comment
Diffstat (limited to 'perl-install/commands.pm')
-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 17f4b2580..9b06743fa 100644 --- a/perl-install/commands.pm +++ b/perl-install/commands.pm @@ -77,7 +77,7 @@ sub mkdir_ { } mkdir $_[0], 0755 or die "mkdir: error creating directory $_: $!\n"; }; - foreach (@_) { &$mkdir($_); } + &$mkdir($_) foreach @_; } |