Index: ChangeLog
from Akim Demaille <[EMAIL PROTECTED]>
* tags.am: Fix missing leading tabs.
Index: tags.am
--- tags.am Wed, 14 Mar 2001 23:14:29 +0100 akim (am/g/12_tags.am 1.8 644)
+++ tags.am Wed, 14 Mar 2001 23:15:34 +0100 akim (am/g/12_tags.am 1.8 644)
@@ -45,11 +45,13 @@
$(TAGS_FILES) $(LISP)
tags=; \
here=`pwd`; \
+## It is tempting to use if/endif here, but don't: the previous
+## backslash will cause bad results (automake doesn't `see' the `if').
?SUBDIRS? list='$(SUBDIRS)'; for subdir in $$list; do \
## Do nothing if we're trying to look in `.'.
-?SUBDIRS? if test "$$subdir" = .; then :; else \
+?SUBDIRS? if test "$$subdir" = .; then :; else \
?SUBDIRS? test -f $$subdir/TAGS && tags="$$tags -i $$here/$$subdir/TAGS"; \
-?SUBDIRS? fi; \
+?SUBDIRS? fi; \
?SUBDIRS? done; \
## Make sure the list of sources is unique.
list='$(SOURCES) $(HEADERS) $(TAGS_FILES)'; \