Source: proxy-suite Version: 1.9.2.4-10 Tags: patch User: [email protected] Usertags: rebootstrap
proxy-suite fails to cross build from source, because it strips with the build architecture strip via install -s. Beyond breaking cross compilation, this breaks DEB_BUILD_OPTIONS=nocheck and generation of -dbgsym packages. The attached patch passes a non-stripping install and fixes all of the above issues. Please consider applying it. Helmut
diff --minimal -Nru proxy-suite-1.9.2.4/debian/changelog proxy-suite-1.9.2.4/debian/changelog --- proxy-suite-1.9.2.4/debian/changelog 2014-06-19 19:02:51.000000000 +0200 +++ proxy-suite-1.9.2.4/debian/changelog 2019-05-11 09:15:01.000000000 +0200 @@ -1,3 +1,10 @@ +proxy-suite (1.9.2.4-10.1) UNRELEASED; urgency=medium + + * Non-maintainer upload. + * Fix FTCBFS: Defer all stripping to dh_strip. (Closes: #-1) + + -- Helmut Grohne <[email protected]> Sat, 11 May 2019 09:15:01 +0200 + proxy-suite (1.9.2.4-10) unstable; urgency=medium * Fix FTBFS: added build-dependency on cm-super-minimal. (Closes: #750167) diff --minimal -Nru proxy-suite-1.9.2.4/debian/rules proxy-suite-1.9.2.4/debian/rules --- proxy-suite-1.9.2.4/debian/rules 2012-09-03 21:07:48.000000000 +0200 +++ proxy-suite-1.9.2.4/debian/rules 2019-05-11 09:14:56.000000000 +0200 @@ -2,6 +2,7 @@ include /usr/share/cdbs/1/rules/debhelper.mk include /usr/share/cdbs/1/class/autotools.mk +export INSTALL=/usr/bin/install --strip-program=true DEB_CONFIGURE_EXTRA_FLAGS := \ --enable-warnings \

