Author: coke
Date: Tue Nov 15 12:38:14 2005
New Revision: 9998
Modified:
trunk/config/gen/config_pm.pm
Log:
This file was renamed from .pl to .pm recently: update the internals that refer
to the file name.
Modified: trunk/config/gen/config_pm.pm
==============================================================================
--- trunk/config/gen/config_pm.pm (original)
+++ trunk/config/gen/config_pm.pm Tue Nov 15 12:38:14 2005
@@ -3,7 +3,7 @@
=head1 NAME
-config/gen/config_pm.pl - Record configuration data
+config/gen/config_pm.pm - Record configuration data
=head1 DESCRIPTION
@@ -32,7 +32,7 @@ sub runstep {
open(IN, "config/gen/config_pm/Config_pm.in") or die "Can't open
Config_pm.in: $!";
open(OUT, ">lib/Parrot/Config.pm") or die "Can't open lib/Parrot/Config.pm:
$!";
- print OUT "# Generated by config/gen/config_pm.pl\n";
+ print OUT "# Generated by config/gen/config_pm.pm\n";
while(<IN>) {
s/<<HERE>>/Parrot::Configure::Data->dump()/e;
@@ -47,7 +47,7 @@ sub runstep {
open(OUT, ">config_lib.pasm") or die "Can't open config_lib.pasm: $!";
print OUT <<"END";
-# Generated by config/gen/config_pm.pl from the template
+# Generated by config/gen/config_pm.pm from the template
# '$template' and \%PConfig
# This file should be the last thing run during
# the make process, after Parrot is built.