summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Gravrock <sdg@panix.com>2012-12-15 14:34:07 -0800
committerSteve Gravrock <sdg@panix.com>2012-12-15 14:34:07 -0800
commit61e78cac9d03e74280e82b4a8f2bcd62c6727f65 (patch)
tree9c4d4e4b89d41df68bddc5e6f8e208b7a6bd4857
parent8b48967c74e9b16c07f120b71598f5e5269e8f57 (diff)
downloadyajl-61e78cac9d03e74280e82b4a8f2bcd62c6727f65.tar.gz
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.
-rwxr-xr-xtest/run_tests.sh2
1 files changed, 1 insertions, 1 deletions
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`