summaryrefslogtreecommitdiff
path: root/tests/scripts/features/se_statpat
AgeCommit message (Collapse)AuthorFilesLines
2009-09-24- Rework secondary expansion so we only defer it if there's a possibilityPaul Smith1-38/+17
it might be needed: for most situations we parse prereqs immediately as we used to. Reduces memory usage. - Fixes Savannah bug #18622.
2005-10-24Make second expansion optional (partial implementation).Paul Smith1-0/+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.
2005-03-03Fixed stem termination and stem triple-expansion bugs.Boris Kolpackov1-0/+18
2005-02-27Implementation of the second expansion in explicitBoris Kolpackov1-0/+106
rules, static pattern rules and implicit rules.