From a559edf9067a1ecc0972c88961ed697ec5836490 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Wed, 17 Mar 2010 15:22:18 +1100 Subject: build: fixed init function sentinal for python modules --- buildtools/wafsamba/samba_python.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'buildtools/wafsamba/samba_python.py') diff --git a/buildtools/wafsamba/samba_python.py b/buildtools/wafsamba/samba_python.py index 4073dcf9bb..e9f554fefd 100644 --- a/buildtools/wafsamba/samba_python.py +++ b/buildtools/wafsamba/samba_python.py @@ -20,7 +20,7 @@ def SAMBA_PYTHON(bld, name, # when we support static python modules we'll need to gather # the list from all the SAMBA_PYTHON() targets if init_function_sentinal is not None: - cflags += '-DSTATIC_LIBPYTHON_MODULES="%s"' % init_function_sentinal + cflags += '-DSTATIC_LIBPYTHON_MODULES=%s' % init_function_sentinal if realname is None: # a SAMBA_PYTHON target without a realname is just a -- cgit