Procházet zdrojové kódy

build: Fix build failure with automake < 1.11

When there's no AM_SILENT_RULES support, set a AM_DEFAULT_VERBOSITY
variable to 1 (verbose), so that the verbosity variables under man/
become no-ops.
Guillem Jover před 17 roky
rodič
revize
bb9d87468f
1 změnil soubory, kde provedl 2 přidání a 1 odebrání
  1. 2 1
      configure.ac

+ 2 - 1
configure.ac

@@ -11,7 +11,8 @@ DPKG_ARCHITECTURE
 
 
 AM_INIT_AUTOMAKE([1.8 gnu nostdinc])
 AM_INIT_AUTOMAKE([1.8 gnu nostdinc])
 
 
-m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
+m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])],
+                            [AC_SUBST([AM_DEFAULT_VERBOSITY], [1])])
 
 
 AM_GNU_GETTEXT_VERSION([0.16.1])
 AM_GNU_GETTEXT_VERSION([0.16.1])
 AM_GNU_GETTEXT([external])
 AM_GNU_GETTEXT([external])