diff options
author | Thierry Vignaud <tv@mageia.org> | 2011-09-14 10:30:10 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2011-09-14 10:30:10 +0000 |
commit | 4abf9e87bc077f8f6bbbd166e80a70459773c40f (patch) | |
tree | f9983aa07a609edb821280c513a1a2680b058fcc | |
parent | 0efba878a88fa9fb96480db911d0721e14c7cae1 (diff) | |
download | perl-MDK-Common-4abf9e87bc077f8f6bbbd166e80a70459773c40f.tar perl-MDK-Common-4abf9e87bc077f8f6bbbd166e80a70459773c40f.tar.gz perl-MDK-Common-4abf9e87bc077f8f6bbbd166e80a70459773c40f.tar.bz2 perl-MDK-Common-4abf9e87bc077f8f6bbbd166e80a70459773c40f.tar.xz perl-MDK-Common-4abf9e87bc077f8f6bbbd166e80a70459773c40f.zip |
fix namepsace in doc
-rw-r--r-- | NEWS | 2 | ||||
-rwxr-xr-x | lib/MDK/Common.pm.pl | 1 |
2 files changed, 3 insertions, 0 deletions
@@ -1,3 +1,5 @@ +- fix namepsace in doc + Version 1.2.28 - 12 April 2011, by Olivier Blin - substInFile: fix writing to zero-sized or nonexistent files (#460), diff --git a/lib/MDK/Common.pm.pl b/lib/MDK/Common.pm.pl index ec29f06..260189a 100755 --- a/lib/MDK/Common.pm.pl +++ b/lib/MDK/Common.pm.pl @@ -35,6 +35,7 @@ EOF foreach my $f (<lib/MDK/Common/*.pm>) { (my $pkg = $f) =~ s|/|::|g; + $pkg =~ s!lib::!!; open F, $f or die "can't open file $f"; my $line; while (<F>) { |