From 31368ce8e47efe5d754d007ec71b610f6c6c4f76 Mon Sep 17 00:00:00 2001 From: Iain Lane Date: Fri, 22 Feb 2013 10:34:24 +0000 Subject: Disable silent rules for more useful build logs --- debian/rules | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'debian/rules') diff --git a/debian/rules b/debian/rules index ec764bb..26be5f1 100755 --- a/debian/rules +++ b/debian/rules @@ -2,6 +2,8 @@ FLAVORS = gtk2 gtk3 +COMMON_CONFIGURE_FLAGS = --disable-silent-rules + CONFIGURE_FLAGS_gtk2 = --with-gtk=2 CONFIGURE_FLAGS_gtk3 = --with-gtk=3 @@ -19,7 +21,7 @@ override_dh_autoreconf: override_dh_auto_configure: $(FLAVORS:%=doconfigure-%) doconfigure-%: - DH_VERBOSE=1 dh_auto_configure --builddirectory=builddir/$* -- $(CONFIGURE_FLAGS_$*) + DH_VERBOSE=1 dh_auto_configure --builddirectory=builddir/$* -- --disable-silent-rules $(CONFIGURE_FLAGS_$*) override_dh_auto_build: $(FLAVORS:%=dobuild-%) -- cgit v1.2.3 From 319a606200ce59a9b86372ef40e0015b09d47a07 Mon Sep 17 00:00:00 2001 From: Iain Lane Date: Fri, 22 Feb 2013 11:59:11 +0000 Subject: Use $(COMMON_CONFIGURE_FLAGS) instead of hardcoding --- debian/rules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'debian/rules') diff --git a/debian/rules b/debian/rules index 26be5f1..b73bf84 100755 --- a/debian/rules +++ b/debian/rules @@ -21,7 +21,7 @@ override_dh_autoreconf: override_dh_auto_configure: $(FLAVORS:%=doconfigure-%) doconfigure-%: - DH_VERBOSE=1 dh_auto_configure --builddirectory=builddir/$* -- --disable-silent-rules $(CONFIGURE_FLAGS_$*) + DH_VERBOSE=1 dh_auto_configure --builddirectory=builddir/$* -- $(COMMON_CONFIGURE_FLAGS) $(CONFIGURE_FLAGS_$*) override_dh_auto_build: $(FLAVORS:%=dobuild-%) -- cgit v1.2.3