From 7f64871014f15b1f2ed4e12aa8ef29351f405455 Mon Sep 17 00:00:00 2001 From: Willy De la Court Date: Thu, 10 Jul 2025 20:19:06 +0200 Subject: [PATCH] Use TEMP2 as variable to not create conflict with previous use of TEMP --- Source/Images/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Source/Images/Makefile b/Source/Images/Makefile index 1bf87517..38d0ccd6 100644 --- a/Source/Images/Makefile +++ b/Source/Images/Makefile @@ -41,10 +41,10 @@ TEMP := $(addprefix hd512_,$(TEMP)) $(addprefix hd1k_,$(TEMP)) TEMP := $(TEMP:.def=.img) OBJECTS += $(TEMP) -TEMP = $(shell grep -vEh "^\#" *.def) -TEMP := $(addprefix hd512_,$(TEMP)) $(addprefix hd1k_,$(TEMP)) -TEMP := $(addsuffix .img,$(TEMP)) -OBJECTS += $(TEMP) +TEMP2 = $(shell grep -vEh "^\#" *.def) +TEMP2 := $(addprefix hd512_,$(TEMP2)) $(addprefix hd1k_,$(TEMP2)) +TEMP2 := $(addsuffix .img,$(TEMP2)) +OBJECTS += $(TEMP2) OTHERS = blank144 blankhd512 blankhd1k *.cat