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