changeset 598:a6196e19465b

Oops, a output suppressor was missing from COMPILE_CXX_OBJ macro in the build system.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 14 Jan 2020 02:43:40 +0200
parents 00ad3f0e208b
children ee165ef28b6f
files Makefile.inc
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile.inc	Tue Jan 14 02:05:03 2020 +0200
+++ b/Makefile.inc	Tue Jan 14 02:43:40 2020 +0200
@@ -49,7 +49,7 @@
 	$(call DO_CMD,LINK,$@,$(CC) -o $@ $(filter %.o %.a,$+) $(LDFLAGS) $(1))
 
 COMPILE_CXX_OBJ = \
-	$(call DO_MKDIR,$(OBJPATH)) ; \
+	@$(call DO_MKDIR,$(OBJPATH)) ; \
 	$(call DO_CMD,CXX,$<,$(CXX) $(CXXFLAGS) $(DM_CFLAGS) -c -o $@ $< $(1))
 
 LINK_CXX_BIN = \