forcemerge 614925 543809 tags 614925 + patch thanks * Thomas Battiston <thomas.battis...@gmail.com>, 2011-02-24, 11:32:
python-libmimic depends on python2.5
This is because Python extension modules are linked with libpython2.X (they shouldn't; see lintian bug #592414). The attached patch fixes this bug.
-- Jakub Wilk
diff -u libmimic-1.0.4/debian/rules libmimic-1.0.4/debian/rules --- libmimic-1.0.4/debian/rules +++ libmimic-1.0.4/debian/rules @@ -23,7 +23,7 @@ configure/python-libmimic:: $(addprefix configure-stamp-, $(PY_VERSIONS)) build-stamp-%: - make -C $(buildbasedir)/$* + make -C $(buildbasedir)/$* PYTHON_LIBS= touch $@ build/python-libmimic:: $(addprefix build-stamp-, $(PY_VERSIONS))