We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cddf250 commit ae9fc22Copy full SHA for ae9fc22
src/Makevars.in
@@ -114,9 +114,11 @@ ifeq ($(USE_TBB), SunOS)
114
endif
115
116
# Write compilation output to file, and log it if installation fails.
117
-MAKE_ARGS += > tbb.log 2>&1 \
118
- && echo "(tbb) TBB successfully built and installed." \
119
- || cat tbb.log; rm -f tbb.log
+ifeq ($(VERBOSE),)
+ MAKE_ARGS += > tbb.log 2>&1 \
+ && echo "(tbb) TBB successfully built and installed." \
120
+ || cat tbb.log; rm -f tbb.log
121
+endif
122
123
.PHONY: all tbb tbb-clean
124
0 commit comments