log.mk: fix abort on error when STDOUT=1
See: https://bugzilla.altlinux.org/48863
This commit is contained in:
parent
36642ec71f
commit
bb72a9732f
@ -26,7 +26,7 @@ SHELL += -x
|
||||
endif
|
||||
ifeq (1,$(STDOUT))
|
||||
LOG = 2>&1 | tee -a $(BUILDLOG)
|
||||
LOG_STDERR = $(LOG)
|
||||
LOG_STDERR = 2> >(tee -a $(BUILDLOG) >&2) 1>>$(BUILDLOG)
|
||||
else
|
||||
LOG = >>$(BUILDLOG) 2>&1
|
||||
LOG_STDERR = 2> >(tee -a $(BUILDLOG) >&2) 1>>$(BUILDLOG)
|
||||
|
Loading…
Reference in New Issue
Block a user