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/wafsamba.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'buildtools/wafsamba/wafsamba.py') diff --git a/buildtools/wafsamba/wafsamba.py b/buildtools/wafsamba/wafsamba.py index 876cec5287..0a120da0d2 100644 --- a/buildtools/wafsamba/wafsamba.py +++ b/buildtools/wafsamba/wafsamba.py @@ -213,9 +213,8 @@ def SAMBA_LIBRARY(bld, libname, source, features = 'cc cshlib symlink_lib install_lib' if target_type == 'PYTHON': features += ' pyext' - if pyext or pyembed: - # this is quite strange. we should add pyext feature for pyext - # but that breaks the build. This may be a bug in the waf python tool + allow_undefined_symbols = True + if pyembed: features += ' pyembed' if abi_directory: -- cgit