]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/sourcelist.cc
deal with configured build-essential first
[apt.git] / apt-pkg / sourcelist.cc
index 56df976e82eb495ec80a6a4b788eaad23d174440..1e6b831be7a7be189e522a18bb658e63706091e8 100644 (file)
@@ -558,7 +558,7 @@ bool pkgSourceList::AddVolatileFile(std::string const &File)                /*{{{*/
 void pkgSourceList::AddVolatileFiles(CommandLine &CmdL, std::vector<const char*> * const VolatileCmdL)/*{{{*/
 {
    std::remove_if(CmdL.FileList + 1, CmdL.FileList + 1 + CmdL.FileSize(), [&](char const * const I) {
-      if (I != nullptr && (I[0] == '/' || (I[0] == '.' && I[1] == '/')))
+      if (I != nullptr && (I[0] == '/' || (I[0] == '.' && ((I[1] == '.' && I[2] == '/') || I[1] == '/'))))
       {
         if (AddVolatileFile(I))
         {