mirror of
https://github.com/samba-team/samba.git
synced 2025-02-23 09:57:40 +03:00
replace: Look harder for waf.
This commit is contained in:
parent
c3fa203435
commit
c402e75be9
9
lib/replace/configure
vendored
9
lib/replace/configure
vendored
@ -2,7 +2,14 @@
|
||||
|
||||
PREVPATH=`dirname $0`
|
||||
|
||||
WAF=../../buildtools/bin/waf
|
||||
if [ -f $PREVPATH/../../buildtools/bin/waf ]; then
|
||||
WAF=../../buildtools/bin/waf
|
||||
elif [ -f $PREVPATH/buildtools/bin/waf ]; then
|
||||
WAF=./buildtools/bin/waf
|
||||
else
|
||||
echo "replace: Unable to find waf"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# using JOBS=1 gives maximum compatibility with
|
||||
# systems like AIX which have broken threading in python
|
||||
|
Loading…
x
Reference in New Issue
Block a user