]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Enable the automake silent rules.
authorStewart Smith <stewart@flamingspork.com>
Thu, 2 Aug 2012 14:01:25 +0000 (10:01 -0400)
committerNick Mathewson <nickm@torproject.org>
Thu, 2 Aug 2012 14:04:13 +0000 (10:04 -0400)
$ 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.)

changes/tkt6522 [new file with mode: 0644]
configure.in

diff --git a/changes/tkt6522 b/changes/tkt6522
new file mode 100644 (file)
index 0000000..5a8295a
--- /dev/null
@@ -0,0 +1,5 @@
+  o Build changes:
+    - Where available, we now use automake's "silent" make rules by
+      default, so that warnings are easier to spot.  You can get the
+      old behavior with "make V=1". Patch by Stewart Smith for ticket
+      6522.
index 148edd4d69bab533260f9cbaf1543f7edf3077f7..c107148e799c312ae948f1490e1d6f06be81df4c 100644 (file)
@@ -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