]> git.saurik.com Git - apt.git/commitdiff
apt-key: add \n to dpkg-query --show --showformat
authorCarsten Hey <carsten@debian.org>
Sun, 1 May 2016 15:06:29 +0000 (17:06 +0200)
committerDavid Kalnischkies <david@kalnischkies.de>
Sun, 1 May 2016 15:17:18 +0000 (17:17 +0200)
Guarding against 'broken' greps not dealing with non-text inputs
"just in case" by making the input text with a proper newline.

[commit message by David Kalnischkies]

Reported-On: IRC
Git-Dch: Ignore

cmdline/apt-key.in

index 3f9f016279747a275c5be158374ae6077b4f2165..b309142cf8471f71b56f83d29f691ffe67889517 100644 (file)
@@ -498,7 +498,7 @@ prepare_gpg_home() {
     # well as the script hopefully uses apt-key optionally then like e.g.
     # debian-archive-keyring for (upgrade) cleanup did
     if [ -n "$DPKG_MAINTSCRIPT_PACKAGE" ]; then
-       if ! dpkg-query --show --showformat '${Pre-Depends}${Depends}${Recommends}' "$DPKG_MAINTSCRIPT_PACKAGE" 2>/dev/null | grep -q gnupg; then
+       if ! dpkg-query --show --showformat '${Pre-Depends}${Depends}${Recommends}\n' "$DPKG_MAINTSCRIPT_PACKAGE" 2>/dev/null | grep -q gnupg; then
            cat >&2 <<EOF
 Warning: The $DPKG_MAINTSCRIPT_NAME maintainerscript of the package $DPKG_MAINTSCRIPT_PACKAGE
 Warning: seems to use apt-key (provided by apt) without depending on gnupg or gnupg2.