From 312fd94002cd576140e5d90ef70ea2dd053c949a Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Sat, 12 Nov 2011 05:20:10 +0100 Subject: waf: Don't link python modules against libpython2.x, consistent with other Python modules. Rather, rely just on waf's pyext feature. This fixes a warning from dh_python2. --- buildtools/wafsamba/samba_python.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'buildtools/wafsamba/samba_python.py') diff --git a/buildtools/wafsamba/samba_python.py b/buildtools/wafsamba/samba_python.py index e9afa939a3..f46aacce47 100644 --- a/buildtools/wafsamba/samba_python.py +++ b/buildtools/wafsamba/samba_python.py @@ -45,7 +45,7 @@ def SAMBA_PYTHON(bld, name, cflags=cflags, local_include=local_include, vars=vars, - pyembed=True, + pyext=True, enabled=enabled) return @@ -61,7 +61,7 @@ def SAMBA_PYTHON(bld, name, local_include=local_include, vars=vars, link_name=link_name, - pyembed=True, + pyext=True, target_type='PYTHON', install_path='${PYTHONARCHDIR}', enabled=enabled) -- cgit