[bug #63333] Keep running w/o output sync on temp file failure.

2022-11-13 Thread Paul D. Smith
Update of bug #6 (project make): Status:None => Fixed Open/Closed:Open => Closed Component Version: SCM => 4.4 Fixed Release:

[bug #63333] Keep running w/o output sync on temp file failure.

2022-11-07 Thread Dmitry Goncharov
URL: Summary: Keep running w/o output sync on temp file failure. Project: make Submitter: dgoncharov Submitted: Mon 07 Nov 2022 10:49:05 PM UTC Severity: 3 - Normal

[bug #63333] Keep running w/o output sync on temp file failure.

2022-11-07 Thread Paul D. Smith
Follow-up Comment #3, bug #6 (project make): Thanks Dmitry. I already implemented a change and a test for this but I'll check and see what you've got here too. ___ Reply to this item at:

[bug #63333] Keep running w/o output sync on temp file failure.

2022-11-07 Thread Dmitry Goncharov
Follow-up Comment #2, bug #6 (project make): This patch causes make to print an error message and keep running without output sync on a temp file failure. ___ Reply to this item at:

[bug #63333] Keep running w/o output sync on temp file failure.

2022-11-07 Thread Dmitry Goncharov
Additional Item Attachment, bug #6 (project make): File name: sv6_test.diff Size:2 KB File name: sv6_fix.diff Size:5 KB

[bug #63333] Keep running w/o output sync on temp file failure.

2022-11-07 Thread Dmitry Goncharov
Follow-up Comment #1, bug #6 (project make): Make treats inability to create a temporary file for output sync as fatal and aborts the build. $ cat makefile all:; $(info hello, world) $ mkdir temp $ chmod -w temp $ # this is make from master $ TMPDIR=temp ~/src/make/m64/make -Orecurse