summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOmar Vega Ramos <ovruni@gnu.org.pe>2024-02-15 23:11:00 +0100
committerDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2024-02-15 23:17:58 +0100
commit7a1e1c565269966adb72bbbdee375c353aebb911 (patch)
treec537be7bf644e5c38c06ceeed1c0edef344fded5
parent9dcc042b404c1c3a1cd052630d75b65c79d83129 (diff)
Add support for pacman 5.2.0.HEADmaster
GNUtoo: split patch and wrote commit message. Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
-rw-r--r--lib/common.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/common.sh b/lib/common.sh
index 92712fa..217209b 100644
--- a/lib/common.sh
+++ b/lib/common.sh
@@ -58,7 +58,7 @@ eval "$(
declare -f "${fns[@]}" | sed 's/^[a-z]/_makepkg_&/'
# re-declare ${fn} as a wrapper around _makepkg_${fn}
- printf '%s() { local mesg; mesg="$(_ "$1")"; _p _makepkg_"${FUNCNAME[0]}" "$mesg" "${@:2}"; }\n' \
+ printf '%s() { local mesg; local QUIET=$(true); mesg="$(_ "$1")"; _p _makepkg_"${FUNCNAME[0]}" "$mesg" "${@:2}"; }\n' \
"${fns[@]}"
)"