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:
parent
fca9d05230
commit
8c365d5d4d
@ -1,4 +1,4 @@
|
||||
#!/bin/bash
|
||||
#!/bin/sh
|
||||
|
||||
cat mklist.txt |
|
||||
while read line; do
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user