Module Name: src Committed By: rillig Date: Mon Dec 27 18:26:22 UTC 2021
Modified Files: src/usr.bin/make: compat.c job.c main.c make.c make.h parse.c Log Message: make: remove unnecessary words from command line options Several years ago, the command line options were individual global variables. The global variable could therefore not be named 'silent' since that would have conflicted with local variables of the same name. After moving the global variable to the namespace 'struct CmdOpts', there is no conflict anymore. There doesn't seem to be any risk of naming collisions for the names 'touch' and 'query'. No functional change. To generate a diff of this commit: cvs rdiff -u -r1.234 -r1.235 src/usr.bin/make/compat.c cvs rdiff -u -r1.444 -r1.445 src/usr.bin/make/job.c cvs rdiff -u -r1.548 -r1.549 src/usr.bin/make/main.c cvs rdiff -u -r1.249 -r1.250 src/usr.bin/make/make.c cvs rdiff -u -r1.278 -r1.279 src/usr.bin/make/make.h cvs rdiff -u -r1.583 -r1.584 src/usr.bin/make/parse.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.