File: useful-build-info.patch

package info (click to toggle)
htmldoc 1.9.21-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 7,720 kB
  • sloc: cpp: 24,933; ansic: 4,722; sh: 3,262; makefile: 264; java: 59; php: 36; python: 13; xml: 10; perl: 7
file content (29 lines) | stat: -rw-r--r-- 638 bytes parent folder | 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
29
From: Jeff Licquia <licquia@debian.org>
Date: Sat, 21 Dec 2019 22:31:04 +0100
Subject: Build system patch

Forwarded: not-needed
Last-Update: 2011-02-20

This patch makes the build system print useful information in case of
a build failure.
---
 Makedefs.in | 3 ---
 1 file changed, 3 deletions(-)

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