diff options
author | Michael Vogt <egon@bottom> | 2007-10-15 17:42:41 +0200 |
---|---|---|
committer | Michael Vogt <egon@bottom> | 2007-10-15 17:42:41 +0200 |
commit | 6edbc051f4cc97ec24b0b95791aa3cdc2ade3aae (patch) | |
tree | a29fed6bcb5787e260f76e378fbdb620295d12e3 /apt-pkg/init.cc | |
parent | 36a79a09a53e8178a6d9d817043e522a2b842ded (diff) |
* apt-pkg/depcache.cc:
- set "APT::Install-Recommends" to true by default (OMG!)
Diffstat (limited to 'apt-pkg/init.cc')
-rw-r--r-- | apt-pkg/init.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/init.cc b/apt-pkg/init.cc index 676b66d38..2b412e16b 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","/"); |