From 41cadcf1d6220eeabb175736cc55b19ee5ccf16e Mon Sep 17 00:00:00 2001 From: Toyam Cox Date: Tue, 29 Aug 2017 15:18:46 -0400 Subject: [PATCH] xbps-src: now pass -q for quiet, -Q for no-check Previously -q was passed to sub processes. When I changed -q's meaning, this made everything quiet. -Q is now passed for those instances, and -q is passed for quieting. --- common/xbps-src/shutils/chroot.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/common/xbps-src/shutils/chroot.sh b/common/xbps-src/shutils/chroot.sh index a59646f221..0787988d0d 100644 --- a/common/xbps-src/shutils/chroot.sh +++ b/common/xbps-src/shutils/chroot.sh @@ -196,7 +196,8 @@ chroot_handler() { [ -n "$XBPS_BUILD_FORCEMODE" ] && arg="$arg -f" [ -n "$XBPS_MAKEJOBS" ] && arg="$arg -j$XBPS_MAKEJOBS" [ -n "$XBPS_DEBUG_PKGS" ] && arg="$arg -g" - [ -z "$XBPS_CHECK_PKGS" -o "$XBPS_CHECK_PKGS" = "0" -o "$XBPS_CHECK_PKGS" = "no" ] && arg="$arg -q" + [ -z "$XBPS_CHECK_PKGS" -o "$XBPS_CHECK_PKGS" = "0" -o "$XBPS_CHECK_PKGS" = "no" ] && arg="$arg -Q" + [ -n "$XBPS_QUIET" ] && arg="$arg -q" [ -n "$XBPS_SKIP_DEPS" ] && arg="$arg -I" [ -n "$XBPS_ALT_REPOSITORY" ] && arg="$arg -r $XBPS_ALT_REPOSITORY" [ -n "$XBPS_USE_GIT_REVS" ] && arg="$arg -G"