From 62cc813f881c9b889298d02749b5665be7cfff1f Mon Sep 17 00:00:00 2001 From: Jason Ish Date: Fri, 11 Feb 2022 09:13:31 -0600 Subject: [PATCH] rust/make: fix maintainer-clean-local target Was using the wrong name, so vendored Rust crates were not being cleaned up on make maintainer-clean. --- rust/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/Makefile.am b/rust/Makefile.am index 854377f5d..6e5a1fa28 100644 --- a/rust/Makefile.am +++ b/rust/Makefile.am @@ -71,7 +71,7 @@ endif distclean-local: rm -f Cargo.lock -maintainerclean-local: +maintainer-clean-local: rm -rf vendor gen check: -- 2.47.3