From 8463b9aff99d05a61048c8dc9dc249d544109bcd Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Tue, 27 Nov 2007 23:28:23 +0100 Subject: r26177: Allow prebuilding swig wrapper, install ldb.py. (This used to be commit e61160dce4bdfc8ade8494c91c8bbec13d0afe4b) --- source4/lib/ldb/setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source4/lib/ldb/setup.py') diff --git a/source4/lib/ldb/setup.py b/source4/lib/ldb/setup.py index 77b54f434d..2ec6d7b055 100755 --- a/source4/lib/ldb/setup.py +++ b/source4/lib/ldb/setup.py @@ -9,7 +9,7 @@ setup(name="ldb", author_email="ldb@samba.org", license="LGPLv3", keywords=["ldap","ldb","db","ldif"], - ext_modules=[Extension('_ldb', ['ldb.i'], include_dirs=['include'], - swig_opts=["-keyword"], + py_modules=["ldb"], + ext_modules=[Extension('_ldb', ['ldb_wrap.c'], include_dirs=['include'], library_dirs=["lib"], libraries=['ldb','ldap'])], ) -- cgit