summaryrefslogtreecommitdiff
path: root/RunTest
diff options
context:
space:
mode:
authorph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2012-02-12 16:53:39 +0000
committerph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2012-02-12 16:53:39 +0000
commit36a1645cf063a157a2e7af7bc66ec874d01eac13 (patch)
tree2b2d4ef1d8f10e291f97fdfb69f5053ca7474db1 /RunTest
parentdb22aecdebae325ccdf63941eb1f09fa738ff5b6 (diff)
downloadpcre-36a1645cf063a157a2e7af7bc66ec874d01eac13.tar.gz
Remove bashism from the RunTest script.
git-svn-id: svn://vcs.exim.org/pcre/code/trunk@912 2f5784b3-3f2a-0410-8824-cb99058d5e15
Diffstat (limited to 'RunTest')
-rwxr-xr-xRunTest2
1 files changed, 1 insertions, 1 deletions
diff --git a/RunTest b/RunTest
index aae292e..0d542f9 100755
--- a/RunTest
+++ b/RunTest
@@ -135,7 +135,7 @@ $sim ./pcretest -C pcre8 >/dev/null
support8=$?
$sim ./pcretest -C pcre16 >/dev/null
support16=$?
-if [ $(( $support8 + $support16 )) -eq 2 ] ; then
+if [ `expr $support8 + $support16` -eq 2 ] ; then
test8=
test16=-16
if [ "$arg8" = yes -a "$arg16" != yes ] ; then