Module Name: src Committed By: rillig Date: Sat Aug 1 13:35:13 UTC 2020
Modified Files: src/usr.bin/make: var.c src/usr.bin/make/unit-tests: sysv.mk Log Message: make(1): reduce the number of string comparisons in ${VAR:%.c=%.o} There is only a single position in the word where the tail ".c" can match, since it is implicitly anchored at the end. Therefore there's no need to do several string comparisons. To generate a diff of this commit: cvs rdiff -u -r1.377 -r1.378 src/usr.bin/make/var.c cvs rdiff -u -r1.11 -r1.12 src/usr.bin/make/unit-tests/sysv.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.