Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: run commands silently on config targets
And also add an "error: " prefix, to make the output clearer. Before: $ rm -f config.mk; make config.mk printf 'run ./configure to generate %s\n' "config.mk" >&2 run ./configure to generate config.mk false make: *** No rule to make target 'config.mk'. Stop. After: $ rm -f config.mk; make config.mk error: run ./configure to generate config.mk make: *** No rule to make target 'config.mk'. Stop. This amends commit e21637c ("makefiles: add generated files as dependencies", 2022-06-23) / PR netblue30#5219.
- Loading branch information