b2/Makefile: run tests with bash, not with sh

We need bash for the <(cmd) construct.
This commit is contained in:
Werner Almesberger
2012-05-31 15:35:35 -03:00
parent 39382b1872
commit 4943519eb3
+1 -1
View File
@@ -97,7 +97,7 @@ try:
# ----- Tests -----------------------------------------------------------------
test tests: all
LANG= sh -c \
LANG= bash -c \
'passed=0 && cd test && \
for n in [a-z]*; do \
[ $$n != core ] && SCRIPT=$$n . ./$$n; done; \