File: useful-build-info

package info (click to toggle)
htmldoc 1.9.3-1%2Bdeb10u4
  • links: PTS
  • area: main
  • in suites: buster
  • size: 15,224 kB
  • sloc: ansic: 67,846; cpp: 24,380; makefile: 352; sh: 149; java: 59; php: 36; xml: 10; perl: 7
file content (21 lines) | stat: -rw-r--r-- 458 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Description: Build system patch
 This patch makes the build system print useful information in case of
 a build failure.
Author: Jeff Licquia <licquia@debian.org>
Forwarded: not-needed
Last-Update: 2011-02-20

--- a/Makedefs.in
+++ b/Makedefs.in
@@ -80,11 +80,8 @@
 # Rules...
 #
 
-.SILENT:
 .SUFFIXES:	.a .c .cxx .h .o
 .c.o:
-	echo Compiling $<...
 	$(CC) $(CPPFLAGS) $(CFLAGS) -c $<
 .cxx.o:
-	echo Compiling $<...
 	$(CXX) $(CPPFLAGS) $(CXXFLAGS) -c $<