From 6fd02279da20acba882426496e3b87e556bdeabc Mon Sep 17 00:00:00 2001 From: Steffen Eiden Date: Wed, 20 Dec 2023 13:31:18 +0100 Subject: [PATCH] rust/Makefile: Fix CC/AR variables for TEST_TARGETS MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Steffen Eiden Signed-off-by: Jan Höppner --- rust/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rust/Makefile b/rust/Makefile index e4e98859..fa3cf04d 100644 --- a/rust/Makefile +++ b/rust/Makefile @@ -37,8 +37,8 @@ endif # the cc crate uses these variables to compile c code. It does not open a shell # to call the compiler, so no echo etc. allowed here, just a path to a program -$(BUILD_TARGETS) rust-test: CC = $(CC_SILENT) -$(BUILD_TARGETS) rust-test: AR = $(AR_SILENT) +$(BUILD_TARGETS) $(TEST_TARGETS) rust-test: CC = $(CC_SILENT) +$(BUILD_TARGETS) $(TEST_TARGETS) rust-test: AR = $(AR_SILENT) $(PV_TARGETS): .check-dep-pvtools $(PV_TARGETS) $(CARGO_TARGETS): .check-cargo .no-cross-compile