Просмотр исходного кода

* cmdline/apt-get.cc:
- default to "false" for the "APT::Get::Build-Dep-Automatic"
option (follow debian here)

Michael Vogt лет назад: 17
Родитель
Сommit
4bfb7a7756
2 измененных файлов с 4 добавлено и 1 удалено
  1. 1 1
      cmdline/apt-get.cc
  2. 3 0
      debian/changelog

+ 1 - 1
cmdline/apt-get.cc

@@ -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;
             }

+ 3 - 0
debian/changelog

@@ -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)