diff options
author | John Helmert III <jchelmert3@posteo.net> | 2021-02-16 21:08:09 -0600 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-02-17 03:09:16 +0000 |
commit | eafc7c666d773cfd3b8295474a24cb6eef0919ce (patch) | |
tree | ed06aae3f5623f3d0c3d029042f1a7c2c6d875dd | |
parent | tatt/usecombis.py: Give up after too many USE-generation attempts (diff) | |
download | tatt-eafc7c666d773cfd3b8295474a24cb6eef0919ce.tar.gz tatt-eafc7c666d773cfd3b8295474a24cb6eef0919ce.tar.bz2 tatt-eafc7c666d773cfd3b8295474a24cb6eef0919ce.zip |
templates/tatt_functions.sh: Don't use binpkgs when running the build test
This should force building the package even if
EMERGE_DEFAULT_OPTS has --usepkg=y or --getbinpkg=y, or if
FEATURES=getbinpkg.
Signed-off-by: John Helmert III <jchelmert3@posteo.net>
Closes: https://github.com/gentoo/tatt/pull/71
Signed-off-by: Sam James <sam@gentoo.org>
-rw-r--r-- | templates/tatt_functions.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/tatt_functions.sh b/templates/tatt_functions.sh index 57d3d65..2893dc0 100644 --- a/templates/tatt_functions.sh +++ b/templates/tatt_functions.sh @@ -55,7 +55,7 @@ function tatt_test_pkg TFEATURES="${FEATURES}" fi - eout=$( FEATURES="${TFEATURES}" emerge -1 ${TATT_EMERGEOPTS} "${1:?}" 2>&1 1>/dev/tty ) + eout=$( FEATURES="${TFEATURES}" emerge -1 --getbinpkg=n --usepkg-exclude="${1:?}" ${TATT_EMERGEOPTS} "${1:?}" 2>&1 1>/dev/tty ) if [[ $? == 0 ]] ; then if [ -n "${TFEATURES}" ]; then echo -n "FEATURES='${TFEATURES}' " >> "${TATT_REPORTFILE}" |