File: fix-repeated-builds.patch

package info (click to toggle)
suricata 1%3A8.0.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 240,704 kB
  • sloc: ansic: 357,736; python: 8,721; sh: 5,043; makefile: 2,411; perl: 570; php: 170
file content (16 lines) | stat: -rw-r--r-- 442 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Description: do not clean vendor directory on distclean 
 dh_auto_clean calls make distclean, which in the case of Suricata also
 removes the vendor directory. This breaks repeated builds.
Author: Sascha Steinbiss <satta@debian.org>
Last-Update: 2025-07-11
--- a/rust/Makefile.am
+++ b/rust/Makefile.am
@@ -103,7 +103,7 @@
 	rm -rf target gen
 
 distclean-local:
-	rm -rf vendor dist
+	rm -rf dist
 
 check-bindgen-bindings:
 if HAVE_BINDGEN