xbps-src: flip logic of -Q

This commit is contained in:
Michael Gehring 2017-11-20 12:42:26 +00:00
parent 30cfeb722b
commit 565de75a06
2 changed files with 4 additions and 2 deletions

View file

@ -146,6 +146,8 @@ $(print_cross_targets)
-G Enable XBPS_USE_GIT_REVS (see etc/defaults.conf for more information).
-Q Enable running the check stage.
-g Enable building -dbg packages with debugging symbols.
-H <hostdir>
@ -438,7 +440,7 @@ while getopts "$XBPS_OPTSTRING" opt; do
N) readonly XBPS_SKIP_REMOTEREPOS=1; XBPS_OPTIONS+=" -N";;
o) readonly XBPS_PKG_OPTIONS="$OPTARG"; XBPS_OPTIONS+=" -o $OPTARG";;
q) export XBPS_QUIET=1; XBPS_OPTIONS+=" -q";;
Q) export XBPS_CHECK_PKGS=0; XBPS_OPTIONS+=" -Q";;
Q) export XBPS_CHECK_PKGS=1; XBPS_OPTIONS+=" -Q";;
r) readonly XBPS_ALT_REPOSITORY="$OPTARG"; XBPS_OPTIONS+=" -r $OPTARG";;
t) export XBPS_TEMP_MASTERDIR=1; XBPS_OPTIONS+=" -t -C";;
V) echo $XBPS_SRC_VERSION && exit 0;;