]> git.saurik.com Git - apt.git/commitdiff
Accept --autoremove as alias for --auto-remove
authorJulian Andres Klode <jak@debian.org>
Fri, 26 Aug 2016 14:14:13 +0000 (16:14 +0200)
committerJulian Andres Klode <jak@debian.org>
Fri, 26 Aug 2016 14:14:58 +0000 (16:14 +0200)
I probably missed that when I did the usability work. But better
late than never.

apt-private/private-cmndline.cc
doc/apt-get.8.xml

index a890aafab8f17df261b4be4b41a5e04bd704f490..d0cda08a6df0a6a4798ecc59821f7d2816430f58 100644 (file)
@@ -189,6 +189,7 @@ static bool addArgumentsAPTGet(std::vector<CommandLine::Args> &Args, char const
       addArg('f', "fix-broken", "APT::Get::Fix-Broken", 0);
       addArg(0, "purge", "APT::Get::Purge", 0);
       addArg('V',"verbose-versions","APT::Get::Show-Versions",0);
+      addArg(0, "autoremove", "APT::Get::AutomaticRemove", 0);
       addArg(0, "auto-remove", "APT::Get::AutomaticRemove", 0);
       addArg(0, "reinstall", "APT::Get::ReInstall", 0);
       addArg(0, "solver", "APT::Solver", CommandLine::HasArg);
index 4c34b298b3fabfd91c00bf79151c3de72aac14af..56ce0816559fb0447bed8a0513e10b88409d8c08 100644 (file)
      Configuration Item: <literal>APT::Get::Remove</literal>.</para></listitem>
      </varlistentry>
 
-     <varlistentry><term><option>--auto-remove</option></term>
+     <varlistentry><term><option>--auto-remove</option></term><term><option>--autoremove</option></term>
      <listitem><para>If the command is either <literal>install</literal> or <literal>remove</literal>,
      then this option acts like running the <literal>autoremove</literal> command, removing unused
      dependency packages. Configuration Item: <literal>APT::Get::AutomaticRemove</literal>.