projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
f716a1d
)
beta3 File::Path warning fix
Dean Roehrich [Wed, 7 Feb 1996 00:04:39 +0000 (18:04 -0600)]
The following patch fixes a warning from File::Path. Apply over beta3.
lib/File/Path.pm
patch
|
blob
|
blame
|
history
diff --git
a/lib/File/Path.pm
b/lib/File/Path.pm
index
05c5bd9
..
6cb675b
100644
(file)
--- a/
lib/File/Path.pm
+++ b/
lib/File/Path.pm
@@
-120,7
+120,8
@@
sub mkpath{
sub rmtree {
my($roots, $verbose, $safe) = @_;
- my(@files,$count);
+ my(@files);
+ my($count) = 0;
$roots = [$roots] unless ref $roots;
foreach $root (@{$roots}) {