From: Tom Tromey Date: Sun, 26 Nov 1995 05:52:14 +0000 (+0000) Subject: (TAGS): Always supply 'else' clause to 'if' X-Git-Tag: Release-0-25~151 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cb69dfb8f00bbc80622dcb73677e5c2bc4d1f131;p=thirdparty%2Fautomake.git (TAGS): Always supply 'else' clause to 'if' --- diff --git a/lib/am/tags.am b/lib/am/tags.am index eca6bda59..6709f3510 100644 --- a/lib/am/tags.am +++ b/lib/am/tags.am @@ -7,10 +7,14 @@ TAGS: (cd $$subdir && $(MAKE) TAGS); \ if test -f $$subdir/TAGS; then \ tags="$$tags -i $$here/$$subdir/TAGS"; \ + else \ + true; \ fi; \ done; \ if test -n "$(ETAGS_ARGS)$(CONFIG_HEADER)$(SOURCES)$(HEADERS)$$tags"; \ then \ etags $(ETAGS_ARGS) $$tags $(CONFIG_HEADER) $(SOURCES) $(HEADERS); \ + else \ + true; \ fi diff --git a/tags.am b/tags.am index eca6bda59..6709f3510 100644 --- a/tags.am +++ b/tags.am @@ -7,10 +7,14 @@ TAGS: (cd $$subdir && $(MAKE) TAGS); \ if test -f $$subdir/TAGS; then \ tags="$$tags -i $$here/$$subdir/TAGS"; \ + else \ + true; \ fi; \ done; \ if test -n "$(ETAGS_ARGS)$(CONFIG_HEADER)$(SOURCES)$(HEADERS)$$tags"; \ then \ etags $(ETAGS_ARGS) $$tags $(CONFIG_HEADER) $(SOURCES) $(HEADERS); \ + else \ + true; \ fi