stas 2003/12/17 14:27:33
Modified: lib/Apache Build.pm
Log:
add a warning "noedit" header to the autogenerated Apache2.pm
Revision Changes Path
1.154 +2 -1 modperl-2.0/lib/Apache/Build.pm
Index: Build.pm
===================================================================
RCS file: /home/cvs/modperl-2.0/lib/Apache/Build.pm,v
retrieving revision 1.153
retrieving revision 1.154
diff -u -u -r1.153 -r1.154
--- Build.pm 16 Dec 2003 02:39:00 -0000 1.153
+++ Build.pm 17 Dec 2003 22:27:33 -0000 1.154
@@ -1618,7 +1618,8 @@
}
EOF
- my $content = join "\n\n", 'package Apache2;', $fixup, "1;";
+ my $content = join "\n\n", noedit_warning_hash(),
+ 'package Apache2;', $fixup, "1;";
my $file = catfile qw(lib Apache2.pm);
open my $fh, '>', $file or die "Can't open $file: $!";
print $fh $content;