summaryrefslogtreecommitdiff
path: root/apt-pkg/init.cc
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2007-11-28 16:46:46 +0100
committerMichael Vogt <michael.vogt@ubuntu.com>2007-11-28 16:46:46 +0100
commitac3dee0e5091f19b77de96eec5241cb57c13f2a1 (patch)
tree2a82dd1c7a487f830bc4ec569c9f4e3775ddf4e8 /apt-pkg/init.cc
parent318dd26ac9bdbb30bcd22201393dc73d8566b3cf (diff)
parent757f20941a19d5e1e9ebd74ecd5a4d5b0012644f (diff)
merge with the debian tree
Diffstat (limited to 'apt-pkg/init.cc')
-rw-r--r--apt-pkg/init.cc9
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;
}
/*}}}*/