diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2007-11-28 14:00:40 +0100 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2007-11-28 14:00:40 +0100 |
commit | ce1b2acbafafe111a09846b15183ef42eecf2be5 (patch) | |
tree | 88378b5b8b341e16f2a3647ca1cdf9a145689fd5 /apt-pkg/init.cc | |
parent | 7052511ef60897a02c00da43a309465380f93603 (diff) | |
parent | 757f20941a19d5e1e9ebd74ecd5a4d5b0012644f (diff) |
merge from the debian apt branch
Diffstat (limited to 'apt-pkg/init.cc')
-rw-r--r-- | apt-pkg/init.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/apt-pkg/init.cc b/apt-pkg/init.cc index 676b66d38..338bef66c 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","/"); @@ -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; } /*}}}*/ |