INN commit: trunk (MANIFEST support/mkmanifest)

INN Commit Russ_Allbery at isc.org
Tue Jul 31 18:42:18 UTC 2007


    Date: Tuesday, July 31, 2007 @ 11:42:17
  Author: iulius
Revision: 7611

Fix the pattern which matches excluded files.

Modified:
  trunk/MANIFEST
  trunk/support/mkmanifest

--------------------+
 MANIFEST           |    4 +++-
 support/mkmanifest |    2 +-
 2 files changed, 4 insertions(+), 2 deletions(-)

Modified: MANIFEST
===================================================================
--- MANIFEST	2007-07-22 17:13:04 UTC (rev 7610)
+++ MANIFEST	2007-07-31 18:42:17 UTC (rev 7611)
@@ -50,7 +50,7 @@
 backends/archive.c                    Simple article archiver
 backends/batcher.c                    Make news batches
 backends/buffchan.c                   Buffered funnel to file splitter
-backends/crosspost.c                  Create links for crossposts (obselete)
+backends/crosspost.c                  Create links for crossposts (obsolete)
 backends/cvtbatch.c                   Add fields to simple batchfile
 backends/filechan.c                   Split a funnel into separate files
 backends/innbind.c                    Bind to low-numbered network ports
@@ -794,6 +794,8 @@
 tests/data/db/newsgroups              Skeleton newsgroups file for testing
 tests/data/etc                        Configuration for testing (Directory)
 tests/data/etc/buffindexed.conf       buffindexed configuration for testing
+tests/data/etc/inn-bfx.conf           Basic inn.conf for testing buffindexed
+tests/data/etc/inn-tdx.conf           Basic inn.conf for testing tradindexed
 tests/data/etc/inn.conf               Basic inn.conf file for testing
 tests/data/etc/overview.fmt           Overview configuration for testing
 tests/data/etc/passwd                 Password data for ckpasswd tests

Modified: support/mkmanifest
===================================================================
--- support/mkmanifest	2007-07-22 17:13:04 UTC (rev 7610)
+++ support/mkmanifest	2007-07-31 18:42:17 UTC (rev 7611)
@@ -35,7 +35,7 @@
             my $pattern = $_;
             $pattern =~ s%\*%[^/]*%g;
             $pattern =~ s/\./\\./g;
-            push (@IGNORE, qr/$pattern/);
+            push (@IGNORE, qr/^$pattern$/);
         } else {
             $IGNORE{$_} = 1;
         }



More information about the inn-committers mailing list