diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-03-17 15:22:18 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-04-06 20:26:50 +1000 |
commit | a559edf9067a1ecc0972c88961ed697ec5836490 (patch) | |
tree | 6fb414a6e7450ca4826b7a77f142977a84c5a336 /buildtools/wafsamba | |
parent | e6a47a8dea252c7ced95141f24de68f4d6a21c41 (diff) | |
download | samba-a559edf9067a1ecc0972c88961ed697ec5836490.tar.gz samba-a559edf9067a1ecc0972c88961ed697ec5836490.tar.bz2 samba-a559edf9067a1ecc0972c88961ed697ec5836490.zip |
build: fixed init function sentinal for python modules
Diffstat (limited to 'buildtools/wafsamba')
-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 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 |