summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile.in5
-rw-r--r--WHATS_NEW1
2 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in
index 1ce9ca81f..d9ac8156d 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -229,10 +229,9 @@ endif
ifneq ($(shell which ctags),)
.PHONY: tags
-all: tags
tags:
- test -z "$(shell find $(top_srcdir) -type f -name '*.[ch]' -newer tags | head -1)" || $(RM) tags
+ test -z "$(shell find $(top_srcdir) -type f -name '*.[ch]' -newer tags 2>/dev/null | head -1)" || $(RM) tags
test -f tags || find $(top_srcdir) -maxdepth 4 -type f -name '*.[ch]' -exec ctags -a '{}' +
-DISTCLEAN_TARGETS += tags
+CLEAN_TARGETS += tags
endif
diff --git a/WHATS_NEW b/WHATS_NEW
index 1ce1c81eb..c9dec022f 100644
--- a/WHATS_NEW
+++ b/WHATS_NEW
@@ -1,5 +1,6 @@
Version 2.02.131 -
=====================================
+ Make tags only when requested via 'make tags'.
Configure supports --disable-dependency-tracking for one-time builds.
Fix usage of configure.h when building in srcdir != builddir.