Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2012-03-05 | Simplify copyrights using ranges of years. | Paul Smith | 1 | -2/+1 | |
The new GNU Maintainer's Manual allows the use of year ranges in certain situations; take advantage of this simplification. | |||||
2012-03-04 | Convert all "`'" quotes to "''" per new GNU Coding Standard guidelines. | Paul Smith | 1 | -1/+1 | |
Fixes Savannah bug #34530. | |||||
2012-01-16 | Update copyright notices. | Paul Smith | 1 | -1/+1 | |
2010-07-13 | Update copyrights for 2010. | Paul Smith | 1 | -1/+1 | |
2009-11-16 | Add VMS enhancements from Hartmut Becker. | Paul Smith | 1 | -41/+82 | |
2009-10-25 | Update copyright years. | Paul Smith | 1 | -1/+1 | |
2007-07-04 | * Update to GPLv3 | Paul Smith | 1 | -5/+5 | |
* Update copyright to 2007 * Fix download URL for translation files (thanks to Thiemo Seufer) | |||||
2006-04-07 | Code cleanup: Remove all references to PARAMS() & ansi2knr. | Paul Smith | 1 | -1/+1 | |
2006-02-11 | Last of the copyright updates. | Paul Smith | 1 | -2/+2 | |
2006-02-11 | Update copyright and license notices on all files. | Paul Smith | 1 | -3/+16 | |
Added new file strcache.c to various non-UNIX makefiles and build scripts. | |||||
2005-06-10 | Fixes for VMS from Hartmut Becker. | Paul Smith | 1 | -4/+8 | |
2005-05-03 | Fix problems with losing tokens in the jobserver, reported by Grant | Paul Smith | 1 | -0/+667 | |
Taylor. There are two forms of this: first, it was possible to lose tokens when using -j and -l at the same time, because waiting jobs were not checked when determining whether any jobs were outstanding. Second, if you had an exported recursive variable that contained a $(shell ...) function there is a possibility to lose tokens, since a token was taken but the child list was not updated until after the shell function was complete. To resolve this I introduced a new variable that counted the number of tokens we have obtained, rather than checking whether there were any children on the list. I also added some sanity checks to make sure we weren't writing back too many or not enough tokens. And, the master make will drain the token pipe before exiting and compare the count of tokens at the end to what was written there at the beginning. Also: * Ensure a bug in the environment (missing "=") doesn't cause make to core. * Rename the .DEFAULT_TARGET variable to .DEFAULT_GOAL, to match the terminology in the documentation and other variables like MAKECMDGOALS. * Add documentation of the .DEFAULT_GOAL special variable. Still need to document the secondary expansion stuff... |