Source: delaboratory Version: 0.8-2 Tags: patch User: [email protected] Usertags: rebootstrap
delaboratory fails to cross build from source, because it strips during build with the build architecture strip. Beyond breaking cross compilation, this also breaks DEB_BUILD_OPTIONS=nostrip as well as generation of a -dbgsym package. Relying on dh_strip is best here. The attached patch fixes all of the above. Please consider applying it. Helmut
diff --minimal -Nru delaboratory-0.8/debian/changelog delaboratory-0.8/debian/changelog --- delaboratory-0.8/debian/changelog 2014-03-26 20:50:19.000000000 +0100 +++ delaboratory-0.8/debian/changelog 2019-05-12 12:42:23.000000000 +0200 @@ -1,3 +1,10 @@ +delaboratory (0.8-2.1) UNRELEASED; urgency=medium + + * Non-maintainer upload. + * Fix FTCBFS: Don't strip during build. (Closes: #-1) + + -- Helmut Grohne <[email protected]> Sun, 12 May 2019 12:42:23 +0200 + delaboratory (0.8-2) unstable; urgency=low [ Olly Betts <[email protected]> ] diff --minimal -Nru delaboratory-0.8/debian/rules delaboratory-0.8/debian/rules --- delaboratory-0.8/debian/rules 2013-12-25 09:31:52.000000000 +0100 +++ delaboratory-0.8/debian/rules 2019-05-12 12:42:22.000000000 +0200 @@ -6,3 +6,6 @@ %: dh $@ + +override_dh_auto_build: + dh_auto_build -- STRIP=:

