From 77a6ea370437125b5b484b6ddfed9d14f3004585 Mon Sep 17 00:00:00 2001 From: Spiro Trikaliotis Date: Mon, 20 Jun 2022 16:34:14 +0200 Subject: [PATCH] Makefile fix for ld65 error processing --- test/asm/listing/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/asm/listing/Makefile b/test/asm/listing/Makefile index e4528dd06..976af1fc8 100644 --- a/test/asm/listing/Makefile +++ b/test/asm/listing/Makefile @@ -89,10 +89,10 @@ else $(ISEQUAL) --empty $$(@:.bin=.list-err) endif -ifneq ($(wildcard $(WORKDIR)/$1.ld65-err),) ifneq ($(wildcard ref/$1.ld65err-ref),) $(ISEQUAL) ref/$1.ld65err-ref $$(@:.bin=.ld65-err) else +ifneq ($(wildcard $(WORKDIR)/$1.ld65-err),) $(ISEQUAL) --empty $$(@:.bin=.ld65-err) endif endif