changeset 2417:9b4958ef4af2

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:44:11 +0200
parents 377e96524145
children 8abdd95139d6
files Makefile.gen
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile.gen	Tue Jan 14 02:10:09 2020 +0200
+++ b/Makefile.gen	Tue Jan 14 02:44:11 2020 +0200
@@ -313,7 +313,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 = \