summaryrefslogtreecommitdiff
path: root/Debian/Debhelper/Buildsystem/autoconf.pm
diff options
context:
space:
mode:
authorJoey Hess <joey@kitenet.net>2014-06-13 11:50:05 -0400
committerJoey Hess <joey@kitenet.net>2014-06-13 11:50:05 -0400
commit255e3cf0e3b909e9f6dccb66eb4483afc5413d34 (patch)
treea5f3b2af4d8f4f2343de2a443c6213c41e30c9f8 /Debian/Debhelper/Buildsystem/autoconf.pm
parent6975a4c505014634cf0d5f39262f366a9a64f065 (diff)
Pass --disable-silent-rules in dh_auto_configure if DH_VERBOSE is set.
Diffstat (limited to 'Debian/Debhelper/Buildsystem/autoconf.pm')
-rw-r--r--Debian/Debhelper/Buildsystem/autoconf.pm3
1 files changed, 3 insertions, 0 deletions
diff --git a/Debian/Debhelper/Buildsystem/autoconf.pm b/Debian/Debhelper/Buildsystem/autoconf.pm
index 20b9fd44..56a42887 100644
--- a/Debian/Debhelper/Buildsystem/autoconf.pm
+++ b/Debian/Debhelper/Buildsystem/autoconf.pm
@@ -37,6 +37,9 @@ sub configure {
push @opts, "--infodir=\${prefix}/share/info";
push @opts, "--sysconfdir=/etc";
push @opts, "--localstatedir=/var";
+ if (defined $ENV{DH_VERBOSE} && $ENV{DH_VERBOSE} ne "") {
+ push @opts, "--disable-silent-rules";
+ }
my $multiarch=dpkg_architecture_value("DEB_HOST_MULTIARCH");
if (! compat(8)) {
if (defined $multiarch) {