From 54e618847adb25408ed3301842bc4ee4bd63ec85 Mon Sep 17 00:00:00 2001 From: Joel Dice Date: Sat, 11 Oct 2008 11:59:18 -0600 Subject: [PATCH] use /bin/sh instead of /bin/bash to run test.sh, since MSYS does not have /bin/bash (although /bin/sh is bash) --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index 0393f5f2a5..250fc58e5a 100644 --- a/makefile +++ b/makefile @@ -255,7 +255,7 @@ vg: build .PHONY: test test: build - /bin/bash $(test)/test.sh 2>/dev/null \ + /bin/sh $(test)/test.sh 2>/dev/null \ $(executable) $(mode) "$(flags)" \ $(call class-names,$(test-build),$(test-classes))