diff options
author | Björn Jacke <bj@sernet.de> | 2010-12-02 10:14:07 +0100 |
---|---|---|
committer | Bjoern Jacke <bj@sernet.de> | 2010-12-02 10:36:06 +0100 |
commit | 8c365d5d4de925d6b548acb3f55a57b35cf4056d (patch) | |
tree | 0df758f38757cc2e6d1a6409eb89d7e771b7693f | |
parent | fca9d052304971659366f00ee7105d70d7460b66 (diff) | |
download | samba-8c365d5d4de925d6b548acb3f55a57b35cf4056d.tar.gz samba-8c365d5d4de925d6b548acb3f55a57b35cf4056d.tar.bz2 samba-8c365d5d4de925d6b548acb3f55a57b35cf4056d.zip |
waf/buildtools: remove more bash shebangs and fix a == to =
-rwxr-xr-x | buildtools/mktowscript/rebuild_all.sh | 2 | ||||
-rwxr-xr-x | buildtools/testwaf.sh | 4 |
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 |