Source: tilde
Version: 1.1.2-1
Tags: patch
User: debian-cr...@lists.debian.org
Usertags: ftcbfs

tilde fails to cross build from source, because make install strips
using the build architecture strip via install -s. Beyond breaking cross
compilation, this also breaks generation of -dbgsym packages as well as
DEB_BUILD_OPTIONS=nostrip. It is best to defer stripping to dh_strip.
Please consider applying the attached patch to fix all of the mentioned
issues.

Helmut
diff --minimal -Nru tilde-1.1.2/debian/changelog tilde-1.1.2/debian/changelog
--- tilde-1.1.2/debian/changelog        2019-12-12 06:44:36.000000000 +0100
+++ tilde-1.1.2/debian/changelog        2020-05-28 17:27:05.000000000 +0200
@@ -1,3 +1,10 @@
+tilde (1.1.2-1.1) UNRELEASED; urgency=medium
+
+  * Non-maintainer upload.
+  * Fix FTCBFS: Pass a non-stripping install to make install. (Closes: #-1)
+
+ -- Helmut Grohne <hel...@subdivi.de>  Thu, 28 May 2020 17:27:05 +0200
+
 tilde (1.1.2-1) unstable; urgency=medium
 
   * New upstream release.
diff --minimal -Nru tilde-1.1.2/debian/rules tilde-1.1.2/debian/rules
--- tilde-1.1.2/debian/rules    2019-12-12 06:44:36.000000000 +0100
+++ tilde-1.1.2/debian/rules    2020-05-28 17:27:04.000000000 +0200
@@ -6,3 +6,6 @@
 
 override_dh_auto_configure:
        dh_auto_configure -- --with-verbose-compile
+
+override_dh_auto_install:
+       dh_auto_install -- INSTALL='install --strip-program=true'

Reply via email to