File: 060_add-missing-dependency.patch

package info (click to toggle)
snowdrop 0.02b-17
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 312 kB
  • sloc: ansic: 2,251; makefile: 288
file content (19 lines) | stat: -rw-r--r-- 668 bytes parent folder | download
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; \