summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon McVittie <smcv@debian.org>2020-10-15 17:53:50 +0100
committerSimon McVittie <smcv@debian.org>2020-10-15 17:53:50 +0100
commit403aab40f7388e0cc97bb15087131871dacd9355 (patch)
tree3c942ae346a637827d8916d72484b2bb063dbc85
parent361d77e164d3e0ad619fe8b8bd5bd1dae73a3a81 (diff)
Skip dh_dwz on mipsel (workaround for #972269)debian/1.2.16-4
-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