From: Michael Vogt Date: Thu, 21 Feb 2008 14:06:03 +0000 (+0100) Subject: * cmdline/apt-get.cc: X-Git-Tag: 0.7.24ubuntu1~84 X-Git-Url: https://git.saurik.com/apt.git/commitdiff_plain/f6c0d4ae82e5300cc39d4d95837ab939f15fec9b?hp=b098f0f4e4bf6538182dc7b9127566b483477806 * cmdline/apt-get.cc: - fix task installation (thanks to Colin Watson) --- diff --git a/cmdline/apt-get.cc b/cmdline/apt-get.cc index 46172332f..8956332a3 100644 --- a/cmdline/apt-get.cc +++ b/cmdline/apt-get.cc @@ -1506,7 +1506,7 @@ bool TryInstallTask(pkgDepCache &Cache, pkgProblemResolver &Fix, buf[end-start] = 0x0; if (regexec(&Pattern,buf,0,0,0) != 0) continue; - res &= TryToInstall(Pkg,Cache,Fix,Remove,true,ExpectedInst); + res &= TryToInstall(Pkg,Cache,Fix,Remove,false,ExpectedInst); found = true; } diff --git a/debian/changelog b/debian/changelog index c1743a8b2..dfde4686d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,6 +2,8 @@ apt (0.7.9ubuntu12) hardy; urgency=low * debian/apt.cron.daily: - use admin user proxy settings + * cmdline/apt-get.cc: + - fix task installation (thanks to Colin Watson) --