From a67a53828f0e7506a7a19e9447d8c7e18e50737b Mon Sep 17 00:00:00 2001 From: Sascha Steinbiss Date: Tue, 12 Jul 2022 15:57:16 +0100 Subject: [PATCH] do not clean vendor directory on distclean Last-Update: 2018-12-26 dh_auto_clean calls make distclean, which in the case of Suricata also removes the vendor directory. This breaks repeated builds. Gbp-Pq: Name fix-repeated-builds.patch --- rust/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/Makefile.am b/rust/Makefile.am index afe9836e..1a611aaa 100644 --- a/rust/Makefile.am +++ b/rust/Makefile.am @@ -65,7 +65,7 @@ distclean-local: rm -f Cargo.lock maintainerclean-local: - rm -rf vendor gen + rm -rf gen check: CARGO_HOME="$(CARGO_HOME)" @rustup_home@ \ -- 2.30.2