summaryrefslogtreecommitdiff
path: root/tests/scripts/variables/automatic
Commit message (Collapse)AuthorAgeFilesLines
* - Add a new test suite for LIBPATTERNSPaul Smith2009-06-071-0/+12
| | | | | | - Fix Savannah bug #21198 - Fix Savannah bug #21823 - Fix Savannah bug #22010
* Fixed a number of documentation bugs, plus some build/install issues:Paul Smith2006-10-011-11/+10
| | | | | | | | 16304, 16468, 16577, 17701, 17880, 16051, 16652, 16698 Plus some from the mailing list. Imported a patch from Eli to allow Cygwin builds to support DOS-style pathnames.
* Numerous updates to tests for issues found on Cygwin and Windows.Paul Smith2006-03-101-8/+11
| | | | | | Revert a fix for $? including non-existent files as it shows a bug in the Linux kernel build. Give them a release to fix this. Add some changes from Eli Z. for Windows changes.
* Various changes getting ready for the release of 3.81.Paul Smith2006-01-041-5/+16
| | | | | | - Updates to make.texi and make.1 and other documentation - Some VMS patches - Fix minor bugs reported on the mailing list and from Debian.
* Make second expansion optional (partial implementation).Paul Smith2005-10-241-3/+4
| | | | | | | | | | | | | | | | I decided this feature was too impacting to make the permanent default behavior. This set of changes makes the default behavior of make the old behavior (no second expansion). If you want second expansion, you must define the .SECONDEXPANSION: special target before the first target that needs it. This set of changes ONLY fixes explicit and static pattern rules to work like this. Implicit rules still have second expansion enabled all the time: I'll work on that next. Note that there is still a backward-incompatibility: now to get the old SysV behavior using $$@ etc. in the prerequisites list you need to set .SECONDEXPANSION: as well.
* Fixed Savannah bug #12320.Boris Kolpackov2005-03-151-0/+15
|
* Implementation of the second expansion in explicitBoris Kolpackov2005-02-271-2/+2
| | | | rules, static pattern rules and implicit rules.
* Fix core dump on malformed variable line (Debian bug #81656)Paul Smith2002-10-051-0/+6
| | | | | Allow SysV-style variable references to use {} in addition to (). Add variable.h to the POTFILES.in since it has a translatable string.
* A few test bug fixes:Paul Smith2002-09-101-0/+2
| | | | | | | | * Never use "touch" in make rules; it breaks on most sub-second supporting systems. Use echo "" > $@ instead. * Forgot to close test makefiles before using them! All the above worked fine on Linux but failed miserably on Solaris.
* Implement SysV-style $$@ support. I looked at E.Parmelan's patch butPaul Smith2002-07-101-3/+26
| | | | decided to implement this a different way, and didn't use it.
* Documentation and tests for order-only prerequisites.Paul Smith2002-07-091-0/+50
Add a new test suite for automatic variables.