You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spamassassin.apache.org by jm...@apache.org on 2006/11/08 17:46:05 UTC

svn commit: r472539 - /spamassassin/trunk/build/mkupdates/run_part2

Author: jm
Date: Wed Nov  8 08:46:05 2006
New Revision: 472539

URL: http://svn.apache.org/viewvc?view=rev&rev=472539
Log:
bug 5171: allow rules/*.pre files to be added to rules updates; otherwise none of the core eval-rule ruleset are defined, causing lots of lint failures

Modified:
    spamassassin/trunk/build/mkupdates/run_part2

Modified: spamassassin/trunk/build/mkupdates/run_part2
URL: http://svn.apache.org/viewvc/spamassassin/trunk/build/mkupdates/run_part2?view=diff&rev=472539&r1=472538&r2=472539
==============================================================================
--- spamassassin/trunk/build/mkupdates/run_part2 (original)
+++ spamassassin/trunk/build/mkupdates/run_part2 Wed Nov  8 08:46:05 2006
@@ -87,10 +87,10 @@
   cd $rulesdir 
 
   # Use this to include plugin .pm files:
-  # tar cvf - *.cf *.pm                    || exit $?
+  # tar cvf - *.cf *.pm *.pre            || exit $?
 
   # or this, to ban code from the updates:
-  tar cvf - *.cf                         || exit $?
+  tar cvf - *.cf *.pre                   || exit $?
 
 ) | gzip -9 > $tmpdir/update.tgz         || exit $?