From 4d61a21811aa61025eda8355417d0662822476d9 Mon Sep 17 00:00:00 2001 From: Marc Hartmayer Date: Wed, 25 Mar 2020 10:58:59 +0100 Subject: [PATCH] genprotimg: fix dependency tracking for .lds generation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Variable names are case sensitive in Makefiles, therefore fix the typo in the variable reference. Fixes: 2d600570df98 ("genprotimg: boot: use C pre-processor for linker script generation") Reviewed-by: Jan Höppner Signed-off-by: Marc Hartmayer Signed-off-by: Jan Höppner --- genprotimg/boot/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/genprotimg/boot/Makefile b/genprotimg/boot/Makefile index 55b97259..d39bbd66 100644 --- a/genprotimg/boot/Makefile +++ b/genprotimg/boot/Makefile @@ -41,7 +41,7 @@ all: $(FILES) # Dependencies for the .lds generation sources_lds_S = $(wildcard *.lds.S) -dependencies_lds_S = $(sources_lds_s:%.lds.S=.%.lds.d) +dependencies_lds_S = $(sources_lds_S:%.lds.S=.%.lds.d) # Include all ".lds.d" dependency files for all make targets except for "clean" ifneq ($(MAKECMDGOALS),clean) -include $(dependencies_lds_S)