diff options
author | Paul Smith <psmith@gnu.org> | 2009-06-06 23:16:46 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 2009-06-06 23:16:46 +0000 |
commit | b9f831b858761366e0db418e6f226a053ed550af (patch) | |
tree | c1136963019da597c69848df352510c752a6d4ea /tests/scripts/variables | |
parent | 71385e12250ea56ddb2186f22a3f741684562ac5 (diff) | |
download | gunmake-b9f831b858761366e0db418e6f226a053ed550af.tar.gz |
- Work around a bug in glibc glob(3), by avoiding GLOB_NOCHECK.
- Fix issue in very parallel builds found building glibc.
Diffstat (limited to 'tests/scripts/variables')
-rw-r--r-- | tests/scripts/variables/SHELL | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/tests/scripts/variables/SHELL b/tests/scripts/variables/SHELL index acc5903..a303540 100644 --- a/tests/scripts/variables/SHELL +++ b/tests/scripts/variables/SHELL @@ -49,8 +49,11 @@ all:;@echo "$(SHELL) $$SHELL" $extraENV{SHELL} = $mshell; -run_make_test("all: export SHELL := /./$mshell\n".' -all:;@echo "$(SHELL) $$SHELL" -', '', "/./$mshell /./$mshell"); +run_make_test(" +SHELL := /././$mshell +one: two +two: export SHELL := /./$mshell\n".' +one two:;@echo "$@: $(SHELL) $$SHELL" +', '', "two: /./$mshell /./$mshell\none: /././$mshell $mshell\n"); 1; |