diff options
author | Stewart Smith <stewart@flamingspork.com> | 2012-08-02 10:01:25 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2012-08-02 10:04:13 -0400 |
commit | 9572bebcda4dcd96eaef69e2e512cf31e18c5815 (patch) | |
tree | 4d40a3b5907072a7be03d72871a5f2bf4b2ae55a /configure.in | |
parent | c49975a2b895b9742caba29e7cbd4067252c36c0 (diff) | |
download | tor-9572bebcda4dcd96eaef69e2e512cf31e18c5815.tar.gz tor-9572bebcda4dcd96eaef69e2e512cf31e18c5815.zip |
Enable the automake silent rules.
$ make V=1 # will temporarily disable them
otherwise you see:
CC foo.c
rather than the giant long bulid line.
This makes it significantly easier to spot compiler warnings etc.
Additionally, make them conditional, so we won't error on automake <
1.11
(commits squashed by nickm.)
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 148edd4d69..c107148e79 100644 --- a/configure.in +++ b/configure.in @@ -5,6 +5,7 @@ dnl See LICENSE for licensing information AC_INIT AM_INIT_AUTOMAKE(tor, 0.2.4.0-alpha-dev) +m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) AM_CONFIG_HEADER(orconfig.h) AC_CANONICAL_HOST |