Source: fish Version: 2.6.0-1 Tags: patch The build logs for fish don't show the actual commands used to compile fish, which is undesirable on the buildds.
Since fish does not use automake, the --disable-silent-rules flag for configure which is passed by dh does not have any effect, but passing V=1 to make fixes that.
>From a40aa42524b31a5681b1605aede8e20cbb49856a Mon Sep 17 00:00:00 2001 From: Sven Joachim <[email protected]> Date: Thu, 9 Nov 2017 10:10:36 +0100 Subject: [PATCH] pass V=1 to make to show the compile commands --- debian/rules | 3 +++ 1 file changed, 3 insertions(+) diff --git a/debian/rules b/debian/rules index cc88377..d0cc964 100755 --- a/debian/rules +++ b/debian/rules @@ -13,6 +13,9 @@ CXXFLAGS+=$(CPPFLAGS) override_dh_auto_configure: dh_auto_configure -- --without-included-pcre2 +override_dh_auto_build: + dh_auto_build -- V=1 + override_dh_strip: dh_strip --dbgsym-migration='fish-dbg (<< 2.4.0-1~)' -- 2.15.0

