Source: pd-log Version: 0.1-2 Tags: patch User: [email protected] Usertags: ftcbfs
pd-log fails to cross build from source, because it strips during make install with the wrong strip. This also breaks DEB_BUILD_OPTIONS=nostrip as well as generation of -dbgsym packages. It is best to defer all stripping to dh_strip. This can be done by substituting STRIP for a no-op command such as true. Please consider applying the attached patch. Helmut
diff --minimal -Nru pd-log-0.1/debian/changelog pd-log-0.1/debian/changelog --- pd-log-0.1/debian/changelog 2018-02-01 23:19:09.000000000 +0100 +++ pd-log-0.1/debian/changelog 2019-09-08 20:00:41.000000000 +0200 @@ -1,3 +1,10 @@ +pd-log (0.1-2.1) UNRELEASED; urgency=medium + + * Non-maintainer upload. + * Don't strip during make install. (Closes: #-1) + + -- Helmut Grohne <[email protected]> Sun, 08 Sep 2019 20:00:41 +0200 + pd-log (0.1-2) unstable; urgency=medium * Switched buildsystem from dh to cdbs diff --minimal -Nru pd-log-0.1/debian/rules pd-log-0.1/debian/rules --- pd-log-0.1/debian/rules 2018-02-01 23:19:09.000000000 +0100 +++ pd-log-0.1/debian/rules 2019-09-08 20:00:40.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 {} +

