1
0
mirror of https://github.com/cc65/cc65.git synced 2026-04-21 09:17:52 +00:00

fix error log output

This commit is contained in:
mrdudz
2025-07-09 18:35:05 +02:00
parent 18bb697891
commit 6aad5f6c18
+1 -1
View File
@@ -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