From 472525eecd0bc5ec9533dc8d52cce1191e810782 Mon Sep 17 00:00:00 2001 From: mrdudz Date: Wed, 9 Jul 2025 23:10:43 +0200 Subject: [PATCH] redirect errors into file so we can see it if needed --- test/asm/err/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/asm/err/Makefile b/test/asm/err/Makefile index 9b6bc7fa9..d4648029a 100644 --- a/test/asm/err/Makefile +++ b/test/asm/err/Makefile @@ -33,7 +33,7 @@ ifdef QUIET NULLOUT = >$(NULLDEV) NULLERR = 2>$(NULLDEV) ifndef CMD_EXE - CATERR = 2> $(WORKDIR)/$$@.errlog || (cat $(WORKDIR)/$$@.errlog && false) + CATERR = 2> $@.errlog && (cat $@.errlog && true) endif endif @@ -53,7 +53,7 @@ $(WORKDIR): $(WORKDIR)/%.prg: %.s | $(WORKDIR) $(if $(QUIET),echo asm/err/$*.s) - $(NOT) $(CA65) -o $@ $< $(NULLERR) + $(NOT) $(CA65) -o $@ $< $(CATERR) clean: @$(call RMDIR,$(WORKDIR))