fix error log output

This commit is contained in:
mrdudz
2025-07-09 18:35:05 +02:00
parent 18bb697891
commit 6aad5f6c18

View File

@@ -33,7 +33,7 @@ ifdef QUIET
NULLOUT = >$(NULLDEV) NULLOUT = >$(NULLDEV)
NULLERR = 2>$(NULLDEV) NULLERR = 2>$(NULLDEV)
ifndef CMD_EXE ifndef CMD_EXE
CATERR = 2> $(WORKDIR)/$$@.errlog || (cat $(WORKDIR)/$$@.errlog && false) CATERR = 2> $@.errlog && (cat $@.errlog && true)
endif endif
endif endif