aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormertz2005-05-17 10:59:45 +0000
committermertz2005-05-17 10:59:45 +0000
commit80bca1008462ac089bb4f73248c07c311aa28c3d (patch)
tree3f8a8a9840fc022dac7c9584e1803a1944ab5b68
parentcd1cddcc18af8024f7804a0b2fd50ace0b8f0abe (diff)
downloadtkzinc-80bca1008462ac089bb4f73248c07c311aa28c3d.zip
tkzinc-80bca1008462ac089bb4f73248c07c311aa28c3d.tar.gz
tkzinc-80bca1008462ac089bb4f73248c07c311aa28c3d.tar.bz2
tkzinc-80bca1008462ac089bb4f73248c07c311aa28c3d.tar.xz
- corrected a dramatic bug introduce in previous version which
broke the compiltation for perl-tk
-rwxr-xr-xPerl/export2cpan2
1 files changed, 1 insertions, 1 deletions
diff --git a/Perl/export2cpan b/Perl/export2cpan
index e0572b3..635a17c 100755
--- a/Perl/export2cpan
+++ b/Perl/export2cpan
@@ -158,7 +158,7 @@ foreach my $f (@files) {
# modifying the $VERSION of Zinc.pm with the correctly perl formated version scheme.
&filesubst ('Zinc.pm', "$EXPORT_DIR/$VERSION_DIR/Zinc.pm", '^\$VERSION *=.*;', "\$VERSION = $VERSION;");
-&filesubst ('Makefile.PL', "$EXPORT_DIR/$VERSION_DIR/Makefile.PL", '^my \$VERSION *=.*;', "\$VERSION = $VERSION;");
+&filesubst ('Makefile.PL', "$EXPORT_DIR/$VERSION_DIR/Makefile.PL", '^my \$VERSION *=.*;', "my \$VERSION = $VERSION;");
system("$CP ../Copyright $EXPORT_DIR/$VERSION_DIR");
system("$CP ../generic/*.c $EXPORT_DIR/$VERSION_DIR");