diff options
author | Eric Anholt <[email protected]> | 2012-01-12 14:56:56 -0800 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2012-01-17 10:35:24 -0800 |
commit | 7fa5c919b0025f02e5d2a7de8f59e6109bfe3cb9 (patch) | |
tree | 679202b33c3fd3d8ab04dc2a2dcfeba89ba0fe5d /configure.ac | |
parent | e326480e4ebe8687948041c2dc5f5b7595559a2e (diff) |
mesa: Enable silent automake rules when available.
Finally, a quiet build for the i965 driver, at least! (Note, you can
still get verbose builds at build-time by saying "make V=1")
Reviewed-by: Ian Romanick <[email protected]>
Reviewed-by: Matt Turner <[email protected]>
Reviewed-by: Chad Versace <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 1a120ecdaae..f3f5e3e94d2 100644 --- a/configure.ac +++ b/configure.ac @@ -18,6 +18,11 @@ AC_CONFIG_AUX_DIR([bin]) AC_CANONICAL_HOST AM_INIT_AUTOMAKE([foreign]) +# Support silent build rules, requires at least automake-1.11. Disable +# by either passing --disable-silent-rules to configure or passing V=1 +# to make +m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) + LT_PREREQ([2.2]) LT_INIT([disable-static]) |