Source: pd-hexloader Version: 1.7-2 Tags: patch User: debian-cr...@lists.debian.org Usertags: ftcbfs
pd-hexloader fails to cross build from source, because it strips with the build architecture strip during make install. Beyond breaking cross compilation, doing so also breaks DEB_BUILD_OPTIONS=nostrip as well as generation of -dbgsym packages. Please consider applying the attached patch to defer such stripping to dh_strip, which uses the correct strip program. Helmut
diff --minimal -Nru pd-hexloader-1.7/debian/changelog pd-hexloader-1.7/debian/changelog --- pd-hexloader-1.7/debian/changelog 2018-02-01 23:08:01.000000000 +0100 +++ pd-hexloader-1.7/debian/changelog 2020-04-21 06:38:36.000000000 +0200 @@ -1,3 +1,10 @@ +pd-hexloader (1.7-2.1) UNRELEASED; urgency=medium + + * Non-maintainer upload. + * Fix FTCBFS: Defer stripping to dh_strip. (Closes: #-1) + + -- Helmut Grohne <hel...@subdivi.de> Tue, 21 Apr 2020 06:38:36 +0200 + pd-hexloader (1.7-2) unstable; urgency=medium * Switched buildsystem from dh to cdbs diff --minimal -Nru pd-hexloader-1.7/debian/rules pd-hexloader-1.7/debian/rules --- pd-hexloader-1.7/debian/rules 2018-02-01 23:08:01.000000000 +0100 +++ pd-hexloader-1.7/debian/rules 2020-04-21 06:38:35.000000000 +0200 @@ -23,7 +23,7 @@ $(empty) override_dh_auto_install: - dh_auto_install -- prefix=/usr pkglibdir=$(pkglibdir) + dh_auto_install -- prefix=/usr pkglibdir=$(pkglibdir) STRIP=true # fix permissions find $(CURDIR)/debian/*/$(pkglibdir) -name "*.pd_linux" -exec \ chmod 0664 {} +