Module Name: src Committed By: rillig Date: Sat Nov 28 08:40:05 UTC 2020
Modified Files: src/usr.bin/make: job.c main.c Log Message: make(1): rename conflicting global variables called 'error' When compiling make in all-in-one mode, these variable names conflict. They could have been merged into a single variable, but that would have required to make it a global variable for the other modules as well. The parse module has a similar variable called 'fatals'. All these can possibly be merged into a single variable, but not now. To generate a diff of this commit: cvs rdiff -u -r1.330 -r1.331 src/usr.bin/make/job.c cvs rdiff -u -r1.480 -r1.481 src/usr.bin/make/main.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.