Hi,
here are two patchs aimed at make the build less verbose. They use
the new macro AM_SILENT_RULES which appears in automake 1.11 with an
ifdef for previous version.
configure option and documentation (--enable/disable-silent-rule) are
automagically added by the macro.
Silent (or verbose respectively) can be overriden by configure switch
or by option make V=1 (to be verbose) or V=0 (to be silent)
First patch adds the silent rule as optional, second as
default.
Tested for some days without problem for me.
see : http://www.flameeyes.eu/autotools-mythbuster/automake/silent.html
for more details.
Please comment and commit if it's acceptable.
Thanks
Julien
=== modified file 'configure.ac'
--- configure.ac 2010-03-24 22:48:23 +0000
+++ configure.ac 2010-03-27 10:50:02 +0000
@@ -193,6 +193,7 @@
dnl These are required by automake
dnl AM_INIT_AUTOMAKE(gnash, "trunk$BUILDDATE")
AM_INIT_AUTOMAKE
+m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
AM_MAINTAINER_MODE
AC_PROG_MAKE_SET
=== modified file 'configure.ac'
--- configure.ac 2010-03-24 22:48:23 +0000
+++ configure.ac 2010-03-27 10:56:36 +0000
@@ -193,6 +193,7 @@
dnl These are required by automake
dnl AM_INIT_AUTOMAKE(gnash, "trunk$BUILDDATE")
AM_INIT_AUTOMAKE
+m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES])
AM_MAINTAINER_MODE
AC_PROG_MAKE_SET
_______________________________________________
Gnash-dev mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/gnash-dev