Module Name: src Committed By: rillig Date: Sat Feb 12 11:14:48 UTC 2022
Modified Files: src/usr.bin/make: job.c src/usr.bin/make/unit-tests: deptgt-silent-jobs.exp deptgt-silent-jobs.mk sh-flags.exp Log Message: make: fix echoing of command with '-' in silent target in jobs mode Since job.c 1.83 from 2003-12-20, the command had been echoed even if the target had the attribute '.SILENT'. In sh-flags.exp, each removed 'echo' command is below a target name matching the pattern 'opt-?j????-tgt-??s-cmd-?i?', which means that the target was marked as silent, either through a global '.SILENT' declaration or the command line option '-s' or the attribute '.SILENT' on the target. Reported by Alan Barrett in PR#45356. To generate a diff of this commit: cvs rdiff -u -r1.451 -r1.452 src/usr.bin/make/job.c cvs rdiff -u -r1.1 -r1.2 src/usr.bin/make/unit-tests/deptgt-silent-jobs.exp \ src/usr.bin/make/unit-tests/deptgt-silent-jobs.mk cvs rdiff -u -r1.3 -r1.4 src/usr.bin/make/unit-tests/sh-flags.exp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.