diff options
author | Michael Vogt <mvo@debian.org> | 2013-11-28 16:50:20 +0100 |
---|---|---|
committer | Michael Vogt <mvo@debian.org> | 2013-11-28 16:50:20 +0100 |
commit | e4e5d47b0e66ae7bedafbdbb685114c404381204 (patch) | |
tree | 2f5367f9239343ae070c47042630e87a98ddd73a | |
parent | ef102a0639ac994a5dc909a8ef40a826f7ebc056 (diff) |
fix "apt-get --purge build-dep" (closes: #720597)
-rw-r--r-- | apt-private/private-cmndline.cc | 1 | ||||
-rw-r--r-- | debian/changelog | 7 |
2 files changed, 8 insertions, 0 deletions
diff --git a/apt-private/private-cmndline.cc b/apt-private/private-cmndline.cc index 8ba6629a8..b6f257bcb 100644 --- a/apt-private/private-cmndline.cc +++ b/apt-private/private-cmndline.cc @@ -149,6 +149,7 @@ bool addArgumentsAPTGet(std::vector<CommandLine::Args> &Args, char const * const else if (CmdMatches("build-dep")) { addArg('a', "host-architecture", "APT::Get::Host-Architecture", CommandLine::HasArg); + addArg(0, "purge", "APT::Get::Purge", 0); addArg(0, "solver", "APT::Solver", CommandLine::HasArg); } else if (CmdMatches("clean", "autoclean", "check", "download", "changelog") || diff --git a/debian/changelog b/debian/changelog index ebcc7399d..7447628db 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +apt (0.9.13.1) unstable; urgency=low + + [ Colin Watson ] + * fix "apt-get --purge build-dep" (closes: #720597) + + -- Michael Vogt <michael.vogt@ubuntu.com> Thu, 28 Nov 2013 16:49:31 +0100 + apt (0.9.13) unstable; urgency=low [ TJ Guthrie ] |