]> git.saurik.com Git - apt.git/commitdiff
* apt-pkg/contrib/fileutl.cc:
authorDavid Kalnischkies <kalnischkies@gmail.com>
Sat, 28 Aug 2010 15:34:06 +0000 (17:34 +0200)
committerDavid Kalnischkies <kalnischkies@gmail.com>
Sat, 28 Aug 2010 15:34:06 +0000 (17:34 +0200)
  - apply SilentlyIgnore also on files without an extension

apt-pkg/contrib/fileutl.cc
debian/changelog

index 91aecee652f863f12dc97a5e2c3b28ffac45b489..2b73d142488de5cbcc647705273d2a51e102e4a2 100644 (file)
@@ -309,7 +309,8 @@ std::vector<string> GetListOfFilesInDir(string const &Dir, std::vector<string> c
            {
               if (Debug == true)
                  std::clog << "Bad file: " << Ent->d_name << " → no extension" << std::endl;
-              _error->Notice("Ignoring file '%s' in directory '%s' as it has no filename extension", Ent->d_name, Dir.c_str());
+              if (SilentIgnore.Match(Ent->d_name) == false)
+                 _error->Notice("Ignoring file '%s' in directory '%s' as it has no filename extension", Ent->d_name, Dir.c_str());
               continue;
            }
         }
index 1c12b56e3fe4c5d286935d50f1ac79c6ec625ff5..781b0e6acdc62af0c4018dfecad27bec8627f44a 100644 (file)
@@ -22,8 +22,10 @@ apt (0.8.1) UNRELEASED; urgency=low
   * apt-pkg/depcache.cc:
     - now that apt-get purge works on 'rc' packages let the MarkDelete
       pass this purge forward to the non-pseudo package for pseudos
+  * apt-pkg/contrib/fileutl.cc:
+    - apply SilentlyIgnore also on files without an extension
 
- -- David Kalnischkies <kalnischkies@gmail.com>  Fri, 27 Aug 2010 12:02:15 +0200
+ -- David Kalnischkies <kalnischkies@gmail.com>  Sat, 28 Aug 2010 17:33:31 +0200
 
 apt (0.8.0) unstable; urgency=low