From 78c26d98b13f3ee16d93f8950198376afb7589cb Mon Sep 17 00:00:00 2001 From: nima Date: Sun, 22 Feb 2009 13:34:24 +0000 Subject: Fixed bug reported by Ralf Treinen. git-svn-id: svn://svn.autonomy.net.au/python-dmidecode@174 abc39116-655e-4be6-ad55-d661dc543056 --- debian/changelog | 7 +++++++ debian/rules | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index ff3f9a8..cbca96f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +python-dmidecode (2.10.3-1) unstable; urgency=low + + * Upstream release - separate setup.py for debug and non-debug versions of + python-dmidecode (Closes: #516358). + + -- Nima Talebi Mon, 23 Feb 2009 00:34:11 +1100 + python-dmidecode (2.10.2-1) unstable; urgency=low * Upstream release. diff --git a/debian/rules b/debian/rules index f5de738..b7b6b95 100755 --- a/debian/rules +++ b/debian/rules @@ -14,7 +14,7 @@ build-ext-%: python$* src/setup.py build touch $@ build-dbg-ext-%: - python$*-dbg src/setup.py build + python$*-dbg src/setup-dbg.py build touch $@ @@ -36,7 +36,7 @@ install-ext-%: python$* src/setup.py install --root $(CURDIR)/debian/python-dmidecode touch $@ install-dbg-ext-%: - python$*-dbg src/setup.py install --root $(CURDIR)/debian/python-dmidecode-dbg + python$*-dbg src/setup-dbg.py install --root $(CURDIR)/debian/python-dmidecode-dbg #find $(CURDIR)/debian/python-dmidecode-dbg/usr/lib/python$*/ ! -type d ! -name '*_d\.so' -delete #find $(CURDIR)/debian/python-dmidecode-dbg/usr/lib/python$*/ -depth -empty -delete touch $@ -- cgit