diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2007-11-28 16:46:46 +0100 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2007-11-28 16:46:46 +0100 |
commit | ac3dee0e5091f19b77de96eec5241cb57c13f2a1 (patch) | |
tree | 2a82dd1c7a487f830bc4ec569c9f4e3775ddf4e8 /apt-pkg/init.cc | |
parent | 318dd26ac9bdbb30bcd22201393dc73d8566b3cf (diff) | |
parent | 757f20941a19d5e1e9ebd74ecd5a4d5b0012644f (diff) |
merge with the debian tree
Diffstat (limited to 'apt-pkg/init.cc')
-rw-r--r-- | apt-pkg/init.cc | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/apt-pkg/init.cc b/apt-pkg/init.cc index 73b3c83de..c0384cd45 100644 --- a/apt-pkg/init.cc +++ b/apt-pkg/init.cc @@ -35,7 +35,7 @@ bool pkgInitConfig(Configuration &Cnf) // General APT things Cnf.Set("APT::Architecture", COMMON_ARCH); Cnf.Set("APT::Build-Essential::", "build-essential"); - Cnf.Set("APT::Install-Recommends", false); + Cnf.Set("APT::Install-Recommends", true); Cnf.Set("APT::Install-Suggests", false); Cnf.Set("Dir","/"); @@ -74,6 +74,9 @@ bool pkgInitConfig(Configuration &Cnf) 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,7 @@ bool pkgInitConfig(Configuration &Cnf) bindtextdomain(textdomain(0),Cnf.FindDir("Dir::Locale").c_str()); } #endif - // Translation - Cnf.Set("APT::Acquire::Translation", "environment"); - + return true; } /*}}}*/ |