[vlc-devel] commit: configure: Define AM_SILENT_RULES. (Pierre d'Herbemont )
git version control
git at videolan.org
Tue Aug 18 12:16:21 CEST 2009
vlc | branch: master | Pierre d'Herbemont <pdherbemont at free.fr> | Tue Aug 18 11:21:45 2009 +0200| [b608f770d9d4ba560884b726dde3a8f46dacf335] | committer: Pierre d'Herbemont
configure: Define AM_SILENT_RULES.
This enables Linux kernel-style silent build output.
If you want a more verbose output use 'make V=1' or './configure --disable-silent-rules'
If you want even less verbosity for custom command, there is $(AM_V_GEN) that you can add in front of your custom command.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=b608f770d9d4ba560884b726dde3a8f46dacf335
---
configure.ac | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/configure.ac b/configure.ac
index ad61642..b17256d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -25,6 +25,10 @@ AC_CANONICAL_HOST
AM_INIT_AUTOMAKE(tar-ustar)
AM_CONFIG_HEADER(config.h)
+# Disable with "./configure --disable-silent-rules" or "make V=1"
+m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
+
+
dnl Too many people are not aware of maintainer mode:
dnl If you want to use it, you definitely know what you are doing, so
dnl you can specify "--disable-maintainer-mode". But if you want the default
More information about the vlc-devel
mailing list