summaryrefslogtreecommitdiffstats
path: root/tools/checkconfig.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tools/checkconfig.sh')
-rwxr-xr-xtools/checkconfig.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/checkconfig.sh b/tools/checkconfig.sh
index 984e72bea..91f7b1c05 100755
--- a/tools/checkconfig.sh
+++ b/tools/checkconfig.sh
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh
#
# This script checks for HAVE_ and ENABLE_ macros which are
@@ -11,7 +11,7 @@
#
-function die() {
+die() {
echo "error: $1"
exit 1
}
@@ -24,7 +24,7 @@ config="$srcdir/config.h.in"
shift
-while (( "$#" )); do
+while [ "$#" -ne 0 ]; do
srcfile=$1
shift