1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-30 06:50:24 +03:00

Search for location of waf script

When calling make from the ldb, talloc, tdb, and
tevent bundles, we need to first find the
location of the waf script. Currently the build
fails since it can't find waf.

Fixes regression caused by a660b7f.

Signed-off-by: David Mulder <dmulder@suse.com>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
David Mulder 2019-02-07 10:47:47 -07:00 committed by Stefan Metzmacher
parent de3bb5cd52
commit 5ed5c33764
4 changed files with 8 additions and 4 deletions

View File

@ -1,6 +1,7 @@
# simple makefile wrapper to run waf
WAF_BINARY=$(PYTHON) ../../buildtools/bin/waf
WAF_BIN=`PATH=buildtools/bin:../../buildtools/bin:$$PATH which waf`
WAF_BINARY=$(PYTHON) $(WAF_BIN)
WAF=PYTHONHASHSEED=1 WAF_MAKE=1 $(WAF_BINARY)
all:

View File

@ -1,6 +1,7 @@
# simple makefile wrapper to run waf
WAF_BINARY=$(PYTHON) ../../buildtools/bin/waf
WAF_BIN=`PATH=buildtools/bin:../../buildtools/bin:$$PATH which waf`
WAF_BINARY=$(PYTHON) $(WAF_BIN)
WAF=PYTHONHASHSEED=1 WAF_MAKE=1 $(WAF_BINARY)
all:

View File

@ -1,6 +1,7 @@
# simple makefile wrapper to run waf
WAF_BINARY=$(PYTHON) ../../buildtools/bin/waf
WAF_BIN=`PATH=buildtools/bin:../../buildtools/bin:$$PATH which waf`
WAF_BINARY=$(PYTHON) $(WAF_BIN)
WAF=PYTHONHASHSEED=1 WAF_MAKE=1 $(WAF_BINARY)
all:

View File

@ -1,5 +1,6 @@
# simple makefile wrapper to run waf
WAF_BINARY=$(PYTHON) ../../buildtools/bin/waf
WAF_BIN=`PATH=buildtools/bin:../../buildtools/bin:$$PATH which waf`
WAF_BINARY=$(PYTHON) $(WAF_BIN)
WAF=PYTHONHASHSEED=1 WAF_MAKE=1 $(WAF_BINARY)
all: