aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRolf Eike Beer <eike@sf-mail.de>2021-06-28 17:09:10 +0200
committerRolf Eike Beer <eike@sf-mail.de>2021-06-28 17:12:18 +0200
commit5b0d77c02b3bf855fc6117f7ac736f3462694aeb (patch)
tree9cde525ef734aea1da23103c54dcbccb8e5b28b2
parenttatt_functions.sh: avoid circular dependencies with USE="minimal -doc" (diff)
downloadtatt-5b0d77c02b3bf855fc6117f7ac736f3462694aeb.tar.gz
tatt-5b0d77c02b3bf855fc6117f7ac736f3462694aeb.tar.bz2
tatt-5b0d77c02b3bf855fc6117f7ac736f3462694aeb.zip
tatt_functions.sh: keep original use flags when doing initial minimal build
Otherwise missing python_targets_* or ruby_targets_* may cause the build to fail early. Signed-off-by: Rolf Eike Beer <eike@sf-mail.de>
-rw-r--r--templates/tatt_functions.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/tatt_functions.sh b/templates/tatt_functions.sh
index bd21e46..d4e7cdf 100644
--- a/templates/tatt_functions.sh
+++ b/templates/tatt_functions.sh
@@ -49,7 +49,7 @@ function tatt_test_pkg
# Do a first pass to avoid circular dependencies
# --onlydeps should mean we're avoiding (too much) duplicate work
- USE="minimal -doc" emerge --onlydeps -q1 --with-test-deps ${TATT_EMERGEOPTS} "${1:?}"
+ USE="${USE} minimal -doc" emerge --onlydeps -q1 --with-test-deps ${TATT_EMERGEOPTS} "${1:?}"
if ! emerge --onlydeps -q1 --with-test-deps ${TATT_EMERGEOPTS} "${1:?}"; then
echo "merging test dependencies of ${1} failed" >> "${TATT_REPORTFILE}"