[bug #63417] .NOTINTERMEDIATE with no prerequisites is not working

2022-11-26 Thread Masahiro Yamada
Follow-up Comment #2, bug #63417 (project make): Thanks, the patch worked for me. ___ Reply to this item at: ___ Message sent via Savannah

[bug #63429] Escape sequence in logs are lost with -O option

2022-11-26 Thread Masahiro Yamada
URL: Summary: Escape sequence in logs are lost with -O option Project: make Submitter: masahiroy Submitted: Sun 27 Nov 2022 02:32:02 AM UTC Severity: 3 - Normal

[bug #63347] make 4.4 change in behavior for sub-make invoked via $(shell)

2022-11-26 Thread Jan Palus
Follow-up Comment #8, bug #63347 (project make): Looks like attached patch changes behavior in the way that makes Linux kernel build system assume silent mode. For following input: $ cat Makefile MAKE_OPTS := A=a C=c H=h all: $(MAKE) -C test $(MAKE_OPTS) all $ cat test/Makefile

[bug #55532] Missing prerequisites are not included in $? if .SECONDARY is present

2022-11-26 Thread Masahiro Yamada
Follow-up Comment #6, bug #55532 (project make): Thanks, I agree with you. BTW, my main motivation was to suppress the auto-removal of intermediate files in the chained implicit rules. Make 4.4 introduced .NOTINTERMEDIATE. This is a better fit to my purpose because it has no side-effect to $?.