Source: asmix Version: 1.5-4.1 Tags: patch User: debian-cr...@lists.debian.org Usertags: ftcbfs
asmix fails to cross build from source, because it strips using the wrong strip during make install. Beyond breaking cross compilation, this also breaks DEB_BUILD_OPTIONS=nostrip as well as generation of -dbgsym packages. It is best to defer all stripping to dh_strip. Please consider applying the attached patch. Helmut
diff -u asmix-1.5/debian/changelog asmix-1.5/debian/changelog --- asmix-1.5/debian/changelog +++ asmix-1.5/debian/changelog @@ -1,3 +1,10 @@ +asmix (1.5-4.2) UNRELEASED; urgency=medium + + * Non-maintainer upload. + * Fix FTCBFS: Defer stripping to dh_strip. (Closes: #-1) + + -- Helmut Grohne <hel...@subdivi.de> Wed, 28 Aug 2019 21:56:46 +0200 + asmix (1.5-4.1) unstable; urgency=low * Non-maintainer upload. diff -u asmix-1.5/debian/rules asmix-1.5/debian/rules --- asmix-1.5/debian/rules +++ asmix-1.5/debian/rules @@ -5,0 +6,2 @@ +export STRIP=/bin/true +export INSTALL=/usr/bin/install --strip-program=true