diff options
Diffstat (limited to 'debian')
-rwxr-xr-x | debian/rules | 4 |
1 files changed, 3 insertions, 1 deletions
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-%) |