summaryrefslogtreecommitdiff
path: root/tests/scripts/variables/SHELL
AgeCommit message (Collapse)AuthorFilesLines
2010-08-29Bump the version to 3.82.90.Paul Smith1-1/+2
Fix some doc bugs. Implement the --trace flag. Show filename/linenumber on error.
2010-07-28Release GNU make 3.823.82Paul Smith1-10/+12
- Update tests for Solaris bizarre-ness - Update files for release
2010-07-19- Many fixup patches from Savannah.Paul Smith1-6/+17
- Fix the test suite on Solaris (from Boris) - Update the manual for .ONESHELL
2010-07-06- Enhance .POSIX to set -e when invoking shells, as demanded by aPaul Smith1-0/+14
backward-incompatible change in the 2008 POSIX specification. - Add the .SHELLFLAGS variable so people can choose their own shell flags. - Add tests for this. - Add documentation for this.
2009-06-06- Work around a bug in glibc glob(3), by avoiding GLOB_NOCHECK.Paul Smith1-3/+6
- Fix issue in very parallel builds found building glibc.
2009-06-05- Add forgotten variable/define test suitePaul Smith1-1/+1
- Skip initial whitespace including formfeeds, vertical tab, etc. - Add tests for that - Fix the variable/SHELL test; it was wrong!
2005-08-25If we're on a DOS/W32/OS2 system and we're not using a unixy shell, don'tPaul Smith1-10/+10
follow POSIX backslash/newline conventions. Use a different method for testing the SHELL variable, which hopefully will work better on non-UNIX systems.
2005-07-12Various minor updates and code cleanups.Paul Smith1-3/+10
2005-07-04Various fixes and updates from testers of the beta3 release (mostly WindowsPaul Smith1-1/+1
and OS/2 changes).
2004-11-28Fix for bug #1276: Handle SHELL according to POSIX requirements.Paul Smith1-0/+49
POSIX requires that the value of SHELL in the makefile NOT be exported to sub-commands. Instead, the value in the environment when make was invoked should be passed to the environment of sub-commands. Note that make still uses SHELL to _run_ sub-commands; it just doesn't change the value of the SHELL variable in the environment of sub-commands. As an extension to POSIX, if the makefile explicitly exports SHELL then GNU make _will_ use it in the environment of sub-commands.