From 78e9f1effb0d8f5fd4eb170ff44af428bc5c2315 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Wed, 6 Jan 2016 12:28:44 +1300 Subject: [PATCH] build: Add space before -D option MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit This ensures that it is not concatonated with the previous option Signed-off-by: Andrew Bartlett Reviewed-by: Jelmer Vernooij Autobuild-User(master): Andrew Bartlett Autobuild-Date(master): Fri Jan 8 02:36:47 CET 2016 on sn-devel-144 --- buildtools/wafsamba/samba_python.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildtools/wafsamba/samba_python.py b/buildtools/wafsamba/samba_python.py index 8ce1b43b61c..057a0176e15 100644 --- a/buildtools/wafsamba/samba_python.py +++ b/buildtools/wafsamba/samba_python.py @@ -97,7 +97,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_sentinel is not None: - cflags += '-DSTATIC_LIBPYTHON_MODULES=%s' % init_function_sentinel + cflags += ' -DSTATIC_LIBPYTHON_MODULES=%s' % init_function_sentinel # From https://docs.python.org/2/c-api/arg.html: # Starting with Python 2.5 the type of the length argument to -- 2.11.4.GIT