summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog6
-rwxr-xr-xdebian/rules5
2 files changed, 11 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
index e7c8723..ef884e2 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+dbus-python (1.2.16-4) unstable; urgency=medium
+
+ * Skip dh_dwz on mipsel (workaround for #972269)
+
+ -- Simon McVittie <smcv@debian.org> Thu, 15 Oct 2020 17:53:44 +0100
+
dbus-python (1.2.16-3) unstable; urgency=medium
* Build without Python 2 support (Closes: #936371, #942941)
diff --git a/debian/rules b/debian/rules
index ffc745e..482a28f 100755
--- a/debian/rules
+++ b/debian/rules
@@ -163,3 +163,8 @@ override_dh_python3:
dh_python3 --shebang="/usr/bin/python$$x" \
/usr/libexec/installed-tests/dbus-python/python$$x; \
done
+
+ifeq ($(DEB_HOST_ARCH),mipsel)
+override_dh_dwz:
+ : # Skip dh_dwz on mipsel, https://bugs.debian.org/972269
+endif