Control: tags -1 patch >From the build log I noticed that this is an issue in python3_objcode_versions definition:
dh [...] --exclude .cpython-3433dm-i386-linux-gnu.so
Attaching a patch that should fix the issue.
--
Dmitry Shachnev--- a/debian/rules
+++ b/debian/rules
@@ -28,7 +28,7 @@
# wildcard will *not* work. So we need to specify the exact substring for
# the Python 3 debug module filenames.
python3_objcode_versions = $(shell \
- printf "%s" ${PYTHON3_VERSIONS} | sed -e 's/\.//g')
+ printf "%s\n" ${PYTHON3_VERSIONS} | sed -e 's/\.//g')
DEB_HOST_MULTIARCH = $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
debug_object_exclude += $(foreach ver,${python3_objcode_versions}, \
.cpython-${ver}dm-${DEB_HOST_MULTIARCH}.so)
signature.asc
Description: OpenPGP digital signature

