summaryrefslogtreecommitdiff
path: root/tests/scripts/features/se_explicit
AgeCommit message (Collapse)AuthorFilesLines
2013-09-21Create a target that tests alternative configurations.Paul Smith1-1/+4
2012-03-04Improve handling for escaped colons in prerequisite lists.Paul Smith1-1/+9
Fixes Savannah bug #12126 and bug #16545
2012-03-04Convert all "`'" quotes to "''" per new GNU Coding Standard guidelines.Paul Smith1-1/+1
Fixes Savannah bug #34530.
2009-10-06Fix savannah bug 25780. Optimize things a bit.Boris Kolpackov1-9/+4
2009-09-28- Update manual description for pattern rule search algorithmPaul Smith1-0/+27
- Add new "-all" flag to the test suite to run tests that don't pass yet - Add some non-passing tests - Fix from Andreas Buening for OS/2.
2009-09-24- Rework secondary expansion so we only defer it if there's a possibilityPaul Smith1-14/+14
it might be needed: for most situations we parse prereqs immediately as we used to. Reduces memory usage. - Fixes Savannah bug #18622.
2009-06-07- Fix Savannah bug #24622Paul Smith1-12/+12
2009-06-04- Modify access of config and gnulib Savannah modules to use GITPaul Smith1-0/+7
- Fix Savannah bug #24655. - Fix Savannah bug #24588. - Fix Savannah bug #24277. - Fix Savannah bug #25697. - Fix Savannah bug #25694. - Fix Savannah bug #25460. - Fix Savannah bug #26207. - Fix Savannah bug #25712. - Fix Savannah bug #26593. - Fix various doc issues.
2005-10-24Make second expansion optional (partial implementation).Paul Smith1-1/+23
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-02-27Implementation of the second expansion in explicitBoris Kolpackov1-0/+105
rules, static pattern rules and implicit rules.