Просмотр исходного кода

* Applied patch from Daniel Leidert <daniel.leidert@wgdd.de> to fix
APT::Acquire::Translation "none" support, closes: #437523.

Otavio Salvador лет назад: 18
Родитель
Сommit
c559790002
2 измененных файлов с 11 добавлено и 4 удалено
  1. 4 4
      apt-pkg/init.cc
  2. 7 0
      debian/changelog

+ 4 - 4
apt-pkg/init.cc

@@ -72,7 +72,10 @@ bool pkgInitConfig(Configuration &Cnf)
    // State   
    Cnf.Set("Dir::Log","var/log/apt");
    Cnf.Set("Dir::Log::Terminal","term.log");
-   
+
+   // Translation
+   Cnf.Set("APT::Acquire::Translation", "environment");
+
    bool Res = true;
    
    // Read an alternate config file
@@ -104,9 +107,6 @@ bool pkgInitConfig(Configuration &Cnf)
    }
 #endif
 
-   // Translation
-   Cnf.Set("APT::Acquire::Translation", "environment");
-   
    return true;
 }
 									/*}}}*/

+ 7 - 0
debian/changelog

@@ -1,3 +1,10 @@
+apt (0.7.8) UNRELEASED; urgency=low
+
+  * Applied patch from Daniel Leidert <daniel.leidert@wgdd.de> to fix
+    APT::Acquire::Translation "none" support, closes: #437523.
+
+ -- Otavio Salvador <otavio@ossystems.com.br>  Thu, 25 Oct 2007 09:24:56 -0200
+
 apt (0.7.7) UNRELEASED; urgency=low
 
   [ Michael Vogt ]