summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbuildtools/mktowscript/rebuild_all.sh2
-rwxr-xr-xbuildtools/testwaf.sh4
2 files changed, 3 insertions, 3 deletions
diff --git a/buildtools/mktowscript/rebuild_all.sh b/buildtools/mktowscript/rebuild_all.sh
index 23622b2abe..e3ed7cfd24 100755
--- a/buildtools/mktowscript/rebuild_all.sh
+++ b/buildtools/mktowscript/rebuild_all.sh
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh
cat mklist.txt |
while read line; do
diff --git a/buildtools/testwaf.sh b/buildtools/testwaf.sh
index a9a17cfdef..d08ea835e7 100755
--- a/buildtools/testwaf.sh
+++ b/buildtools/testwaf.sh
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh
set -e
set -x
@@ -49,7 +49,7 @@ pushd lib/talloc
versions="python2.4 python2.5 python2.6 python3.0 python3.1"
for p in $versions; do
ret=$(which $p || echo "failed")
- if [ $ret == "failed" ]; then
+ if [ $ret = "failed" ]; then
echo "$p not found, skipping"
continue
fi