Module Name: src Committed By: rillig Date: Wed Dec 29 08:23:40 UTC 2021
Modified Files: src/usr.bin/make: cond.c Log Message: make: in irrelevant function calls in conditions, return false When a condition contains an irrelevant function call, it doesn't matter whether the function call evaluates to true or to false, it will be discarded anyway by either CondParser_And or CondParser_Or. Returning false instead of true makes the code simpler, plus it is more common to return false for irrelevant results. No functional change. To generate a diff of this commit: cvs rdiff -u -r1.315 -r1.316 src/usr.bin/make/cond.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.