1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
Description: add missing dependency to upstream Makefile
Upstream Makefile was missing the 'modules' dependency on the 'snowdrop'
target, which made the build fail when using `make --shuffle=reverse`.
Author: David da Silva Polverari <polverari@debian.org>
Bug-Debian: https://bugs.debian.org/1105589
Forwarded: not-needed
Last-Update: 2025-09-12
--- a/Makefile
+++ b/Makefile
@@ -49,7 +49,7 @@
done; \
echo "[*] Language modules compiled."
-snowdrop: snowdrop.c language.h
+snowdrop: snowdrop.c language.h modules
echo "[*] Compiling main code:"; \
test -d /usr/include/openssl && USEOPENSSL=1; \
test -d /usr/local/include/openssl && USEOPENSSL=1; \
|