Source: gdigi Severity: normal Tags: patch User: reproducible-bui...@lists.alioth.debian.org Usertags: buildpath X-Debbugs-Cc: reproducible-b...@lists.alioth.debian.org
The build path is embedded in /usr/bin/gdigi: https://tests.reproducible-builds.org/debian/rb-pkg/unstable/amd64/diffoscope-results/gdigi.html /build/1st/gdigi-0.4.0+git20200615+1c2c89f/gdigi.c:43 vs. /build/2/gdigi-0.4.0+git20200615+1c2c89f/2nd/gdigi.c:43 The attached patch fixes this by passing CFLAGS via EXTRA_CFLAGS in a dh_auto_build override in debian/rules. This allows passing the default build flags including -ffile-prefix-map, which avoids embedding the absolute path in compiled files. With this patch applied, gdigi should build reproducibly on tests.reproducible-builds.org! live well, vagrant
From 41aa07e65328c9f522183e0e036c9143317cba34 Mon Sep 17 00:00:00 2001 From: Vagrant Cascadian <vagr...@reproducible-builds.org> Date: Mon, 23 May 2022 22:05:11 +0000 Subject: [PATCH] debian/rules: Pass CFLAGS as EXTRA_CFLAGS in dh_auto_build override. --- debian/rules | 3 +++ 1 file changed, 3 insertions(+) diff --git a/debian/rules b/debian/rules index cbe925d..ae7a96f 100755 --- a/debian/rules +++ b/debian/rules @@ -1,3 +1,6 @@ #!/usr/bin/make -f %: dh $@ + +override_dh_auto_build: + dh_auto_build -- EXTRA_CFLAGS="$(CFLAGS)" -- 2.36.1
signature.asc
Description: PGP signature