]> git.saurik.com Git - apt.git/commitdiff
* cmdline/apt-get.cc:
authorDavid Kalnischkies <kalnischkies@gmail.com>
Mon, 16 Apr 2012 21:55:21 +0000 (23:55 +0200)
committerDavid Kalnischkies <kalnischkies@gmail.com>
Mon, 16 Apr 2012 21:55:21 +0000 (23:55 +0200)
  - if pkgCacheFile::Generate is disabled in 'update' don't
    remove the caches (and don't try to open them)

cmdline/apt-get.cc
debian/changelog

index 4e6cc32de9d6d11773dbeeaa9fbee47122ebbfce..dd9313bffd6d90371b56a4e46728a3de73cbd092 100644 (file)
@@ -1679,10 +1679,13 @@ bool DoUpdate(CommandLine &CmdL)
        ListUpdate(Stat, *List);
 
    // Rebuild the cache.
-   pkgCacheFile::RemoveCaches();
-   if (Cache.BuildCaches() == false)
-      return false;
-   
+   if (_config->FindB("pkgCacheFile::Generate", true) == true)
+   {
+      pkgCacheFile::RemoveCaches();
+      if (Cache.BuildCaches() == false)
+        return false;
+   }
+
    return true;
 }
                                                                        /*}}}*/
index 7cfa37e523312c6d35a1367de0b0c166a343eed2..8e3e3506480ff3159d65f7968d08a4b5a7d06d00 100644 (file)
@@ -1,3 +1,12 @@
+apt (0.9.1) unstable; urgency=low
+
+  [ David Kalnischkies ]
+  * cmdline/apt-get.cc:
+    - if pkgCacheFile::Generate is disabled in 'update' don't
+      remove the caches (and don't try to open them)
+
+ -- David Kalnischkies <kalnischkies@gmail.com>  Mon, 16 Apr 2012 22:56:31 +0200
+
 apt (0.9.0) unstable; urgency=low
 
   * upload to debian/unstable