Thomas Adam
2015-05-17 03:12:59 UTC
As of automake-1.11, it's now possible to tell automake that the compiler
output is "hidden", producing output almost identical to compiling on
OpenBSD. The effects of this are such that this can be disabled with
'--disable-silent-rules', or 'make V=1' to enable "verbose" output.
Even with silent-rules in use, compiler warnings/errors are still shown in
the usual way.
---
configure.ac | 1 +
1 file changed, 1 insertion(+)
diff --git a/configure.ac b/configure.ac
index cccd656..13a7d27 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2,6 +2,7 @@
# Miscellaneous autofoo bullshit.
AC_INIT(tmux, 2.1)
+AM_SILENT_RULES([yes])
RELEASE=2.0
AC_SUBST(RELEASE)
output is "hidden", producing output almost identical to compiling on
OpenBSD. The effects of this are such that this can be disabled with
'--disable-silent-rules', or 'make V=1' to enable "verbose" output.
Even with silent-rules in use, compiler warnings/errors are still shown in
the usual way.
---
configure.ac | 1 +
1 file changed, 1 insertion(+)
diff --git a/configure.ac b/configure.ac
index cccd656..13a7d27 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2,6 +2,7 @@
# Miscellaneous autofoo bullshit.
AC_INIT(tmux, 2.1)
+AM_SILENT_RULES([yes])
RELEASE=2.0
AC_SUBST(RELEASE)
--
2.1.4
2.1.4