Package: trigger-rally / 0.6.6+dfsg-2

verbose-build.patch Patch series | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
Description: BLHC tool can't read non-verbose build logs
Author: Gianfranco Costamagna <locutusofborg@debian.org>

Index: trigger-rally/src/GNUmakefile
===================================================================
--- trigger-rally.orig/src/GNUmakefile	2019-02-05 19:36:20.230775701 +0100
+++ trigger-rally/src/GNUmakefile	2019-02-05 19:37:26.133775351 +0100
@@ -120,12 +120,7 @@
 
 # links the object files into the executable, which it then strips
 $(TR_EXEFILE): $(OBJFILES)
-	@printf "%s" $(CXX)
-	@for file in $(OBJFILES); do \
-		printf "\t%s\n" $$file; \
-		done
-	@printf "\t-> %s\n" $@
-	@$(CXX) -o $@ $(OBJFILES) $(LDFLAGS)
+	$(CXX) -o $@ $(OBJFILES) $(LDFLAGS)
 	@printf "strip\t%s\n" $@
 	@strip $@
 
@@ -154,5 +149,4 @@
 # if this makefile is edited
 #
 %.o: %.cpp GNUmakefile
-	@printf "%s\t%s -> %s\n" $(CXX) $< $@
-	@$(CXX) $(CXXFLAGS) $(CPPFLAGS) -MMD -MP -c $< -o $@
+	$(CXX) $(CXXFLAGS) $(CPPFLAGS) -MMD -MP -c $< -o $@