From 4943519eb30c4137292da6c77034288f34119d47 Mon Sep 17 00:00:00 2001 From: Werner Almesberger Date: Thu, 31 May 2012 12:38:32 -0300 Subject: [PATCH] b2/Makefile: run tests with bash, not with sh We need bash for the <(cmd) construct. --- b2/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/b2/Makefile b/b2/Makefile index 2740777..4323712 100644 --- a/b2/Makefile +++ b/b2/Makefile @@ -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; \