diff options
author | Andrew Bartlett <abartlet@samba.org> | 2016-01-06 12:28:44 +1300 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2016-01-08 02:36:47 +0100 |
commit | 78e9f1effb0d8f5fd4eb170ff44af428bc5c2315 (patch) | |
tree | e98ef1d567b7f43cab9ac8260c2f3b700998404b /buildtools | |
parent | 0e58705a5bc11a9556d0774f9cb2fbb3897839c8 (diff) | |
download | samba-78e9f1effb0d8f5fd4eb170ff44af428bc5c2315.tar.gz |
build: Add space before -D option
This ensures that it is not concatonated with the previous option
Signed-off-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Jelmer Vernooij <jelmer@samba.org>
Autobuild-User(master): Andrew Bartlett <abartlet@samba.org>
Autobuild-Date(master): Fri Jan 8 02:36:47 CET 2016 on sn-devel-144
Diffstat (limited to 'buildtools')
-rw-r--r-- | buildtools/wafsamba/samba_python.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 |