From 8c365d5d4de925d6b548acb3f55a57b35cf4056d Mon Sep 17 00:00:00 2001 From: Björn Jacke Date: Thu, 2 Dec 2010 10:14:07 +0100 Subject: waf/buildtools: remove more bash shebangs and fix a == to = --- buildtools/mktowscript/rebuild_all.sh | 2 +- 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 -- cgit