[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

[PATCH] use libtool --silent

From: Joe Orton <joe_at_light.plus.com>
Date: 2000-09-10 12:04:25 CEST

This patch adds use of the --silent flag when running libtool... this
makes 'make' output a whole lot more readable IMO: you don't get N lots
of the gcc invocation line, etc.

Index: libsvn_delta/Makefile.am
===================================================================
RCS file: /cvs/subversion/subversion/libsvn_delta/Makefile.am,v
retrieving revision 1.8
diff -u -p -r1.8 Makefile.am
--- libsvn_delta/Makefile.am 2000/09/05 17:30:07 1.8
+++ libsvn_delta/Makefile.am 2000/09/10 09:50:24
@@ -19,3 +19,6 @@ INCLUDES = -I../include -I../../apr/incl
 ## Build *this* directory first, *then* the test subdirectory!
 SUBDIRS = . tests
 
+## Make libtool be quiet
+LIBTOOL = @LIBTOOL@ --silent
+
Index: libsvn_fs/Makefile.am
===================================================================
RCS file: /cvs/subversion/subversion/libsvn_fs/Makefile.am,v
retrieving revision 1.1
diff -u -p -r1.1 Makefile.am
--- libsvn_fs/Makefile.am 2000/08/25 21:31:03 1.1
+++ libsvn_fs/Makefile.am 2000/09/10 09:50:24
@@ -4,3 +4,7 @@
 lib_LTLIBRARIES = libsvn_fs.la
 libsvn_fs_la_SOURCES = fs.c err.c
 INCLUDES = -I../include -I../../apr/include -I../../expat-lite
+
+## Make libtool be quiet
+LIBTOOL = @LIBTOOL@ --silent
+
Index: libsvn_ra_dav/Makefile.am
===================================================================
RCS file: /cvs/subversion/subversion/libsvn_ra_dav/Makefile.am,v
retrieving revision 1.3
diff -u -p -r1.3 Makefile.am
--- libsvn_ra_dav/Makefile.am 2000/08/31 13:52:28 1.3
+++ libsvn_ra_dav/Makefile.am 2000/09/10 09:50:24
@@ -8,3 +8,7 @@ libsvn_ra_dav_la_SOURCES = session.c fet
 INCLUDES = -I../include -I../../apr/include -I../../neon/src
 
 SUBDIRS = . tests
+
+## Make libtool be quiet
+LIBTOOL = @LIBTOOL@ --silent
+
Index: libsvn_string/Makefile.am
===================================================================
RCS file: /cvs/subversion/subversion/libsvn_string/Makefile.am,v
retrieving revision 1.6
diff -u -p -r1.6 Makefile.am
--- libsvn_string/Makefile.am 2000/08/08 23:22:07 1.6
+++ libsvn_string/Makefile.am 2000/09/10 09:50:24
@@ -19,3 +19,6 @@ INCLUDES = -I../include -I../../apr/incl
 ## Build *this* directory first, *then* the test subdirectory!
 SUBDIRS = . tests
 
+## Make libtool be quiet
+LIBTOOL = @LIBTOOL@ --silent
+
Index: libsvn_subr/Makefile.am
===================================================================
RCS file: /cvs/subversion/subversion/libsvn_subr/Makefile.am,v
retrieving revision 1.5
diff -u -p -r1.5 Makefile.am
--- libsvn_subr/Makefile.am 2000/09/06 00:39:28 1.5
+++ libsvn_subr/Makefile.am 2000/09/10 09:50:24
@@ -19,3 +19,6 @@ INCLUDES = -I../include -I../../apr/incl
 ## Build *this* directory first, *then* the test subdirectory!
 SUBDIRS = . tests
 
+## Make libtool be quiet
+LIBTOOL = @LIBTOOL@ --silent
+
Index: libsvn_wc/Makefile.am
===================================================================
RCS file: /cvs/subversion/subversion/libsvn_wc/Makefile.am,v
retrieving revision 1.11
diff -u -p -r1.11 Makefile.am
--- libsvn_wc/Makefile.am 2000/09/08 19:43:53 1.11
+++ libsvn_wc/Makefile.am 2000/09/10 09:50:24
@@ -22,3 +22,6 @@ INCLUDES = -I../include -I../../apr/incl
 ## Build *this* directory first, *then* the test subdirectory!
 SUBDIRS = . tests
 
+## Make libtool be quiet
+LIBTOOL = @LIBTOOL@ --silent
+
Index: mod_dav_svn/Makefile.am
===================================================================
RCS file: /cvs/subversion/subversion/mod_dav_svn/Makefile.am,v
retrieving revision 1.3
diff -u -p -r1.3 Makefile.am
--- mod_dav_svn/Makefile.am 2000/09/09 17:17:59 1.3
+++ mod_dav_svn/Makefile.am 2000/09/10 09:50:24
@@ -13,3 +13,7 @@ libmod_dav_svn_la_SOURCES = mod_dav_svn.
 INCLUDES = -I../include $(APACHE_INCLUDES)
 
 SUBDIRS = . tests
+
+## Make libtool be quiet
+LIBTOOL = @LIBTOOL@ --silent
+
Index: libsvn_delta/tests/Makefile.am
===================================================================
RCS file: /cvs/subversion/subversion/libsvn_delta/tests/Makefile.am,v
retrieving revision 1.2
diff -u -p -r1.2 Makefile.am
--- libsvn_delta/tests/Makefile.am 2000/08/30 03:17:07 1.2
+++ libsvn_delta/tests/Makefile.am 2000/09/10 09:50:24
@@ -15,6 +15,9 @@ deltaparse_test_LDADD = ../libsvn_delta.
                         ../../../expat-lite/libexpat.la
 
 
+## Make libtool be quiet
+LIBTOOL = @LIBTOOL@ --silent
+
 ## Automatic test scripts to run for `make check`
 
 ## TESTS =
Index: libsvn_ra_dav/tests/Makefile.am
===================================================================
RCS file: /cvs/subversion/subversion/libsvn_ra_dav/tests/Makefile.am,v
retrieving revision 1.3
diff -u -p -r1.3 Makefile.am
--- libsvn_ra_dav/tests/Makefile.am 2000/09/02 10:09:17 1.3
+++ libsvn_ra_dav/tests/Makefile.am 2000/09/10 09:50:24
@@ -18,6 +18,9 @@ ra_dav_test_LDADD = ../libsvn_ra_dav.la
                     ../../../apr/libapr.a
 
 
+## Make libtool be quiet
+LIBTOOL = @LIBTOOL@ --silent
+
 ## Automatic tests run by `make check` -----------------------------
 
 ## A list of test-programs to run. (Each program contains sub-tests.)
Index: libsvn_string/tests/Makefile.am
===================================================================
RCS file: /cvs/subversion/subversion/libsvn_string/tests/Makefile.am,v
retrieving revision 1.7
diff -u -p -r1.7 Makefile.am
--- libsvn_string/tests/Makefile.am 2000/08/28 20:11:24 1.7
+++ libsvn_string/tests/Makefile.am 2000/09/10 09:50:24
@@ -13,6 +13,9 @@ stringtest_LDADD = ../libsvn_string.la
                    ../../../apr/libapr.a
 
 
+## Make libtool be quiet
+LIBTOOL = @LIBTOOL@ --silent
+
 ## Automatic tests run by `make check` -----------------------------
 
 ## A list of test-programs to run. (Each program contains sub-tests.)
Index: libsvn_subr/tests/Makefile.am
===================================================================
RCS file: /cvs/subversion/subversion/libsvn_subr/tests/Makefile.am,v
retrieving revision 1.5
diff -u -p -r1.5 Makefile.am
--- libsvn_subr/tests/Makefile.am 2000/08/28 20:11:24 1.5
+++ libsvn_subr/tests/Makefile.am 2000/09/10 09:50:24
@@ -14,6 +14,9 @@ hashdump_test_LDADD = ../libsvn_subr.la
                       ../../../apr/libapr.a
 
 
+## Make libtool be quiet
+LIBTOOL = @LIBTOOL@ --silent
+
 ## Automatic tests run by `make check` -----------------------------
 
 ## A list of test-programs to run. (Each program contains sub-tests.)
Index: libsvn_wc/tests/Makefile.am
===================================================================
RCS file: /cvs/subversion/subversion/libsvn_wc/tests/Makefile.am,v
retrieving revision 1.6
diff -u -p -r1.6 Makefile.am
--- libsvn_wc/tests/Makefile.am 2000/08/30 03:17:07 1.6
+++ libsvn_wc/tests/Makefile.am 2000/09/10 09:50:24
@@ -16,6 +16,9 @@ checkout_test_LDADD = ../libsvn_wc.la
                       ../../../expat-lite/libexpat.la
 
 
+## Make libtool be quiet
+LIBTOOL = @LIBTOOL@ --silent
+
 ## Automatic test scripts to run for `make check`
 
 TESTS = checkout-test.sh
Index: mod_dav_svn/tests/Makefile.am
===================================================================
RCS file: /cvs/subversion/subversion/mod_dav_svn/tests/Makefile.am,v
retrieving revision 1.1
diff -u -p -r1.1 Makefile.am
--- mod_dav_svn/tests/Makefile.am 2000/09/09 10:07:27 1.1
+++ mod_dav_svn/tests/Makefile.am 2000/09/10 09:50:24
@@ -1,4 +1,8 @@
 ## This file is processed by automake to produce `Makefile.in'.
 ## Which is, in turn, processed by configure to produce the file `Makefile'.
 
+## Make libtool be quiet
+LIBTOOL = @LIBTOOL@ --silent
+
 ### need to put something in here...
+
Received on Sat Oct 21 14:36:08 2006

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.