diff options
-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. ###################################################################### |