From d148461101f4709d8e1a8b9eb64535e0bd15d874 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sat, 20 Mar 2010 17:54:05 +1100 Subject: [PATCH] build: CONFIG_SET() takes conf argument --- buildtools/wafsamba/samba_autoconf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildtools/wafsamba/samba_autoconf.py b/buildtools/wafsamba/samba_autoconf.py index dc1a0b3094c..39596442179 100644 --- a/buildtools/wafsamba/samba_autoconf.py +++ b/buildtools/wafsamba/samba_autoconf.py @@ -126,7 +126,7 @@ def CHECK_DECLS(conf, vars, reverse=False, headers=None): def CHECK_FUNC(conf, f, checklink=False): '''check for a function''' define='HAVE_%s' % f.upper() - if CONFIG_SET(define): + if CONFIG_SET(conf, define): return True if checklink: return CHECK_CODE(conf, '%s()' % f, execute=False, define=define) -- 2.11.4.GIT