summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2024-05-07 13:42:43 -0400
committerTavian Barnes <tavianator@tavianator.com>2024-05-07 15:13:28 -0400
commit8ea16c14863d7d6363e251810ca89b7c214cfadc (patch)
tree7ad47f1124487b3dcb0fbedc3a2635dbaaa791e9
parent9413c9b1bc2ab2e47bcb75257a2eece090cc3a3b (diff)
downloadbfs-8ea16c14863d7d6363e251810ca89b7c214cfadc.tar.xz
distcheck: Don't build with make -s
That way I can see the ./configure output on CI.
-rw-r--r--Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index d89f3b6..69048cf 100644
--- a/Makefile
+++ b/Makefile
@@ -156,11 +156,11 @@ DISTCHECKS := \
# Test multiple configurations
distcheck:
- @+${MAKE} -s distcheck-asan
- @+test "$$(uname)" = Darwin || ${MAKE} -s distcheck-msan
- @+${MAKE} -s distcheck-tsan
- @+test "$$(uname)-$$(uname -m)" != Linux-x86_64 || ${MAKE} -s distcheck-m32
- @+${MAKE} -s distcheck-release
+ @+${MAKE} distcheck-asan
+ @+test "$$(uname)" = Darwin || ${MAKE} distcheck-msan
+ @+${MAKE} distcheck-tsan
+ @+test "$$(uname)-$$(uname -m)" != Linux-x86_64 || ${MAKE} distcheck-m32
+ @+${MAKE} distcheck-release
.PHONY: distcheck
# Per-distcheck configuration
@@ -174,7 +174,7 @@ ${DISTCHECKS}::
@${MKDIR} $@
@+cd $@ \
&& ../configure ${DISTCHECK_CONFIG_${@:distcheck-%=%}} \
- && ${MAKE} -s check TEST_FLAGS="--sudo --verbose=skipped"
+ && ${MAKE} check TEST_FLAGS="--sudo --verbose=skipped"
## Packaging (`make install`)