diff options
author | John Wiegley <johnw@newartisans.com> | 2009-02-05 03:48:56 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-02-05 03:48:56 -0400 |
commit | 7f5f53de8259cd2a5dc2e7b8de1ee0bbf3757617 (patch) | |
tree | 3a6387de6c21d69132e3b6c22bcbd7dc49f0de5a | |
parent | d029990209aa74ef25a0ddaf8c3b01dafcb638dc (diff) | |
download | fork-ledger-7f5f53de8259cd2a5dc2e7b8de1ee0bbf3757617.tar.gz fork-ledger-7f5f53de8259cd2a5dc2e7b8de1ee0bbf3757617.tar.bz2 fork-ledger-7f5f53de8259cd2a5dc2e7b8de1ee0bbf3757617.zip |
Quiet the make output when rebuilding TAGS.
-rw-r--r-- | Makefile.am | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Makefile.am b/Makefile.am index 0e13f233..e8ca04c9 100644 --- a/Makefile.am +++ b/Makefile.am @@ -198,9 +198,8 @@ all_sources = $(libledger_util_la_SOURCES) \ all_files = $(all_sources) $(pkginclude_HEADERS) TAGS: $(all_files) - BUILD_DIR=`cd $(top_builddir); pwd`; \ - (cd $(srcdir); \ - etags -l c++ -o $$BUILD_DIR/TAGS $(all_files)) + @BUILD_DIR=`cd $(top_builddir); pwd`; \ + (cd $(srcdir); etags -l c++ -o $$BUILD_DIR/TAGS $(all_files) 2> /dev/null) @echo TAGS rebuilt. ###################################################################### |