Module Name: src Committed By: rillig Date: Tue Jul 28 16:42:22 UTC 2020
Modified Files: src/usr.bin/make: arch.c compat.c for.c job.c main.c make.c meta.c nonints.h parse.c suff.c var.c Log Message: make(1): remove dead code from Var_Subst The first parameter from Var_Subst had been a literal NULL in all cases. These have been fixed using this command: sed -i 's|Var_Subst(NULL, |Var_Subst(|' *.c The one remaining case was not found because the "NULL," was followed by a line break instead of a space. The removed code probably wouldn't have worked as expected anyway. Expanding a single variable to a literal string would have led to unexpected behavior for cases like ${VAR:M${pattern}}, in case pattern would contain an unescaped ':' itself. To generate a diff of this commit: cvs rdiff -u -r1.76 -r1.77 src/usr.bin/make/arch.c cvs rdiff -u -r1.114 -r1.115 src/usr.bin/make/compat.c cvs rdiff -u -r1.55 -r1.56 src/usr.bin/make/for.c cvs rdiff -u -r1.202 -r1.203 src/usr.bin/make/job.c cvs rdiff -u -r1.283 -r1.284 src/usr.bin/make/main.c cvs rdiff -u -r1.100 -r1.101 src/usr.bin/make/make.c cvs rdiff -u -r1.88 -r1.89 src/usr.bin/make/meta.c cvs rdiff -u -r1.86 -r1.87 src/usr.bin/make/nonints.h cvs rdiff -u -r1.238 -r1.239 src/usr.bin/make/parse.c cvs rdiff -u -r1.90 -r1.91 src/usr.bin/make/suff.c cvs rdiff -u -r1.351 -r1.352 src/usr.bin/make/var.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.