summaryrefslogtreecommitdiff
path: root/buildtools/testwaf.sh
diff options
context:
space:
mode:
authorBjörn Jacke <bj@sernet.de>2010-12-02 10:14:07 +0100
committerBjoern Jacke <bj@sernet.de>2010-12-02 10:36:06 +0100
commit8c365d5d4de925d6b548acb3f55a57b35cf4056d (patch)
tree0df758f38757cc2e6d1a6409eb89d7e771b7693f /buildtools/testwaf.sh
parentfca9d052304971659366f00ee7105d70d7460b66 (diff)
downloadsamba-8c365d5d4de925d6b548acb3f55a57b35cf4056d.tar.gz
samba-8c365d5d4de925d6b548acb3f55a57b35cf4056d.tar.bz2
samba-8c365d5d4de925d6b548acb3f55a57b35cf4056d.zip
waf/buildtools: remove more bash shebangs and fix a == to =
Diffstat (limited to 'buildtools/testwaf.sh')
-rwxr-xr-xbuildtools/testwaf.sh4
1 files changed, 2 insertions, 2 deletions
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