summaryrefslogtreecommitdiff
path: root/buildtools/wafsamba/samba_conftests.py
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2010-04-19 15:58:37 +1000
committerAndrew Tridgell <tridge@samba.org>2010-04-19 16:34:14 +1000
commitb6dff759f7016bb4820fc8f9d660bf565c7caeee (patch)
treeb0875b0fccd54afb12040497d12c26823eaab319 /buildtools/wafsamba/samba_conftests.py
parent5040e2a6fbe8b240b1d445e1260bb95203618b75 (diff)
downloadsamba-b6dff759f7016bb4820fc8f9d660bf565c7caeee.tar.gz
samba-b6dff759f7016bb4820fc8f9d660bf565c7caeee.tar.bz2
samba-b6dff759f7016bb4820fc8f9d660bf565c7caeee.zip
build: added --cross-answers support
This allows you to easily cross-compile even without a --cross-execute emulator See http://wiki.samba.org/index.php/Waf#cross-compiling for details
Diffstat (limited to 'buildtools/wafsamba/samba_conftests.py')
-rw-r--r--buildtools/wafsamba/samba_conftests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildtools/wafsamba/samba_conftests.py b/buildtools/wafsamba/samba_conftests.py
index ccd476345e..e86f9393fe 100644
--- a/buildtools/wafsamba/samba_conftests.py
+++ b/buildtools/wafsamba/samba_conftests.py
@@ -165,7 +165,7 @@ def CHECK_LIBRARY_SUPPORT(conf, rpath=False, msg=None):
ADD_LD_LIBRARY_PATH(os.path.join(bdir, 'default/libdir'))
# we need to run the program, try to get its result
- args = conf.SAMBA_CROSS_ARGS()
+ args = conf.SAMBA_CROSS_ARGS(msg=msg)
proc = Utils.pproc.Popen([lastprog] + args, stdout=Utils.pproc.PIPE, stderr=Utils.pproc.PIPE)
(out, err) = proc.communicate()
w = conf.log.write