diff options
-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>) { |