1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-02 09:47:23 +03:00

waf/buildtools: remove more bash shebangs and fix a == to =

This commit is contained in:
Björn Jacke 2010-12-02 10:14:07 +01:00 committed by Bjoern Jacke
parent fca9d05230
commit 8c365d5d4d
2 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh
cat mklist.txt |
while read line; do

View File

@ -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