diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 10:01:02 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 10:01:02 +0000 |
commit | 183f9e9284d895755a84ff42e23e730296860ece (patch) | |
tree | d034059ad2dc36fa6ce1d532044f0959b09be6cf /debian | |
parent | Updating source format. (diff) | |
download | apt-183f9e9284d895755a84ff42e23e730296860ece.tar.xz apt-183f9e9284d895755a84ff42e23e730296860ece.zip |
Using apt binary specific configuration for apt-get.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian')
-rw-r--r-- | debian/patches/progress-linux/0001-apt-options.patch | 15 | ||||
-rw-r--r-- | debian/patches/series | 1 |
2 files changed, 16 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..905944a --- /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 +@@ -472,7 +472,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") + { + if (getenv("NO_COLOR") == nullptr) + _config->CndSet("Binary::apt::APT::Color", true); diff --git a/debian/patches/series b/debian/patches/series new file mode 100644 index 0000000..80c0f62 --- /dev/null +++ b/debian/patches/series @@ -0,0 +1 @@ +progress-linux/0001-apt-options.patch |