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 $<
|