]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/depcache.cc
calculate only expected hashes in methods
[apt.git] / apt-pkg / depcache.cc
index 1332f3ee20ad16f0f6dd43e981d29c76ba966392..25c945ebb10df6db7fbab55399f22208a5314e2f 100644 (file)
@@ -237,9 +237,11 @@ bool pkgDepCache::writeStateFile(OpProgress * /*prog*/, bool InstalledOnly)        /*{{
 
    FileFd StateFile;
    string const state = _config->FindFile("Dir::State::extended_states");
+   if (CreateAPTDirectoryIfNeeded(_config->FindDir("Dir::State"), flNotFile(state)) == false)
+      return false;
 
    // if it does not exist, create a empty one
-   if(!RealFileExists(state)) 
+   if(!RealFileExists(state))
    {
       StateFile.Open(state, FileFd::WriteAtomic);
       StateFile.Close();