Mailing List Archive

svn commit: r439067 - /spamassassin/branches/tvd-multi-mass-check/build/mkrules
Author: felicity
Date: Thu Aug 31 15:12:15 2006
New Revision: 439067

URL: http://svn.apache.org/viewvc?rev=439067&view=rev
Log:
comment out broken mtime code

Modified:
spamassassin/branches/tvd-multi-mass-check/build/mkrules

Modified: spamassassin/branches/tvd-multi-mass-check/build/mkrules
URL: http://svn.apache.org/viewvc/spamassassin/branches/tvd-multi-mass-check/build/mkrules?rev=439067&r1=439066&r2=439067&view=diff
==============================================================================
--- spamassassin/branches/tvd-multi-mass-check/build/mkrules (original)
+++ spamassassin/branches/tvd-multi-mass-check/build/mkrules Thu Aug 31 15:12:15 2006
@@ -90,8 +90,7 @@
die "unreadable active" unless (-f $opt_active);

$opt_sandboxout ||= "70_sandbox.cf";
-$opt_activeout ||= "72_active.cf";
-$opt_inactiveout ||= "70_inactive.cf";
+$opt_activeout ||= "72_active.cf"; $opt_inactiveout ||= "70_inactive.cf";

# source files that need compilation, and their targets
my $needs_compile = { };
@@ -115,17 +114,17 @@

# get mtimes of output files; we can be sure that all
# output is under the "opt_out" dir, so recurse there
-File::Find::find ({
- wanted => \&out_wanted,
- no_chdir => 1
- }, $opt_out);
-
-if ($newest_src_mtime && $newest_out_mtime
- && $newest_src_mtime < $newest_out_mtime)
-{
- print "mkrules: no rules updated\n";
- exit 0;
-}
+#File::Find::find ({
+# wanted => \&out_wanted,
+# no_chdir => 1
+# }, $opt_out);
+#
+#if ($newest_src_mtime && $newest_out_mtime
+# && $newest_src_mtime < $newest_out_mtime)
+#{
+# print "mkrules: no rules updated\n";
+# exit 0;
+#}

my $rules = { };