diff options
Diffstat (limited to 'debian/patches/progress-linux/0001-apt-options.patch')
-rw-r--r-- | debian/patches/progress-linux/0001-apt-options.patch | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/debian/patches/progress-linux/0001-apt-options.patch b/debian/patches/progress-linux/0001-apt-options.patch new file mode 100644 index 0000000..368438e --- /dev/null +++ b/debian/patches/progress-linux/0001-apt-options.patch @@ -0,0 +1,15 @@ +Author: Daniel Baumann <daniel.baumann@progress-linux.org> +Description: Using apt binary specific configuration for apt-get. + +diff -Naurp apt.orig/apt-private/private-cmndline.cc apt/apt-private/private-cmndline.cc +--- apt.orig/apt-private/private-cmndline.cc ++++ apt/apt-private/private-cmndline.cc +@@ -456,7 +456,7 @@ static bool ShowCommonHelp(APT_CMD const + static void BinarySpecificConfiguration(char const * const Binary) /*{{{*/ + { + std::string const binary = flNotDir(Binary); +- if (binary == "apt" || binary == "apt-config") ++ if (binary == "apt" || binary == "apt-get" || binary == "apt-config") + { + _config->CndSet("Binary::apt::APT::Color", true); + _config->CndSet("Binary::apt::APT::Cache::Show::Version", 2); |