stas 01/12/03 19:56:35
Modified: perl-framework/Apache-Test/lib/Apache TestConfig.pm
Log:
- force regeneration of bar.foo.in file if bar.foo exists but older than
bar.foo.in
Revision Changes Path
1.90 +2 -1
httpd-test/perl-framework/Apache-Test/lib/Apache/TestConfig.pm
Index: TestConfig.pm
===================================================================
RCS file:
/home/cvs/httpd-test/perl-framework/Apache-Test/lib/Apache/TestConfig.pm,v
retrieving revision 1.89
retrieving revision 1.90
diff -u -r1.89 -r1.90
--- TestConfig.pm 2001/11/30 04:45:48 1.89
+++ TestConfig.pm 2001/12/04 03:56:35 1.90
@@ -905,7 +905,8 @@
notice "Including $generated config file";
- next if -e $generated;
+ next if -e $generated
+ && -M $generated < -M $file;
my $in = Symbol::gensym();
open($in, $file) or next;