]> git.saurik.com Git - apt.git/commitdiff
* cmdline/apt-get.cc:
authorMichael Vogt <michael.vogt@ubuntu.com>
Mon, 9 Feb 2009 13:34:50 +0000 (14:34 +0100)
committerMichael Vogt <michael.vogt@ubuntu.com>
Mon, 9 Feb 2009 13:34:50 +0000 (14:34 +0100)
  - default to "false" for the "APT::Get::Build-Dep-Automatic"
    option (follow debian here)

cmdline/apt-get.cc
debian/changelog

index 38775f70d70afbf166151e4c7d00a37e6ae1b846..2117a7f2ab75fb42a3e5f7ca4d3a178c64f22ee1 100644 (file)
@@ -2542,7 +2542,7 @@ bool DoBuildDep(CommandLine &CmdL)
             {
                // We successfully installed something; skip remaining alternatives
                skipAlternatives = hasAlternatives;
-              if(_config->FindB("APT::Get::Build-Dep-Automatic", true) == true)
+              if(_config->FindB("APT::Get::Build-Dep-Automatic", false) == true)
                  Cache->MarkAuto(Pkg, true);
                continue;
             }
index a21c383e53bef286b2ac049d67bbf58e04e84a07..89848f31ca1909a1f68cfa39af9dac6ec653f756 100644 (file)
@@ -29,6 +29,9 @@ apt (0.7.20.2ubuntu1) jaunty; urgency=low
     - add new strprintf() function to make i18n strings easier
   * apt-pkg/dev/debsystem.cc:
     - add missing apti18n.h header
+  * cmdline/apt-get.cc:
+    - default to "false" for the "APT::Get::Build-Dep-Automatic"
+      option (follow debian here)
 
   [ Dereck Wonnacott ]
   * Clarify the --help for 'purge' (LP: #243948)