Source: bibclean Version: 2.11.4.1-4.1 Tags: patch User: [email protected] Usertags: ftcbfs
bibclean fails to cross build from source, because it uses the build architecture compiler. I previously sent a patch to make it cross buildable. This patch has been partially applied, but the initialization for CC is missing. I'm attaching another patch for your convenience. Helmut
diff --minimal -Nru bibclean-2.11.4.1/debian/changelog bibclean-2.11.4.1/debian/changelog --- bibclean-2.11.4.1/debian/changelog 2022-10-06 19:42:07.000000000 +0200 +++ bibclean-2.11.4.1/debian/changelog 2022-11-09 08:48:49.000000000 +0100 @@ -1,3 +1,10 @@ +bibclean (2.11.4.1-4.2) UNRELEASED; urgency=medium + + * Non-maintainer upload. + * Fix FTCBFS: Let dpkg's buildtools.mk supply CC. (Closes: #-1) + + -- Helmut Grohne <[email protected]> Wed, 09 Nov 2022 08:48:49 +0100 + bibclean (2.11.4.1-4.1) unstable; urgency=medium * Non-maintainer upload. diff --minimal -Nru bibclean-2.11.4.1/debian/rules bibclean-2.11.4.1/debian/rules --- bibclean-2.11.4.1/debian/rules 2022-10-06 19:42:07.000000000 +0200 +++ bibclean-2.11.4.1/debian/rules 2022-11-09 08:48:49.000000000 +0100 @@ -6,6 +6,7 @@ DPKG_EXPORT_BUILDFLAGS = 1 include /usr/share/dpkg/default.mk +include /usr/share/dpkg/buildtools.mk export CC export FORCE_SOURCE_DATE=1

