File: 050_make-build-verbose.patch

package info (click to toggle)
snowdrop 0.02b-17
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 312 kB
  • sloc: ansic: 2,251; makefile: 288
file content (27 lines) | stat: -rw-r--r-- 835 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
Description: make build more verbose
 This patch makes the build system commands explicit, to allow their inspection
 by Debian tools, such as blhc.
Forwarded: not-needed
Author: David da Silva Polverari <david.polverari@gmail.com>
Last-Update: 2025-09-12

--- a/Makefile
+++ b/Makefile
@@ -36,7 +36,7 @@
 all: modules snowdrop toinstall
 
 modules: language.h
-	@echo ; \
+	echo ; \
 	echo "[*] Compiling language modules:" ; \
 	test -d /usr/include/openssl && USEOPENSSL=1; \
 	test -d /usr/local/include/openssl && USEOPENSSL=1; \
@@ -50,7 +50,7 @@
 	echo "[*] Language modules compiled."
 
 snowdrop: snowdrop.c language.h 
-	@echo "[*] Compiling main code:"; \
+	echo "[*] Compiling main code:"; \
 	test -d /usr/include/openssl && USEOPENSSL=1; \
 	test -d /usr/local/include/openssl && USEOPENSSL=1; \
 	for i in $(LANG); do \