From 61e78cac9d03e74280e82b4a8f2bcd62c6727f65 Mon Sep 17 00:00:00 2001 From: Steve Gravrock Date: Sat, 15 Dec 2012 14:34:07 -0800 Subject: Build fix for NetBSD and other systems where /bin/sh isn't bash Fixed by explicitly using /bin/bash. Removing bash-isms would also work. But /bin/sh is bash on most developers' systems, so using that shell explicitly seems like it's less likely to break in the future. --- test/run_tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test') diff --git a/test/run_tests.sh b/test/run_tests.sh index 55a665b..418094b 100755 --- a/test/run_tests.sh +++ b/test/run_tests.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash ECHO=`which echo` -- cgit v1.2.1