Explorar el Código

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 hace 17 años
padre
commit
bb9d87468f
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      configure.ac

+ 2 - 1
configure.ac

@@ -11,7 +11,8 @@ DPKG_ARCHITECTURE
 
 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([external])