From: Alexandre Duret-Lutz Date: Wed, 5 Dec 2001 17:15:42 +0000 (+0000) Subject: * lib/am/tags.am (ID): Search $(LISP) files in $(srcdir), X-Git-Tag: Release-1-5b~5 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=de56da600642e07c45a9964e72e9c147ac5d35ae;p=automake.git * lib/am/tags.am (ID): Search $(LISP) files in $(srcdir), like other ID dependencies. Suggested by Christian Cornelssen. --- diff --git a/ChangeLog b/ChangeLog index 163e0cc0..96a7c68c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2001-12-05 Alexandre Duret-Lutz + + * lib/am/tags.am (ID): Search $(LISP) files in $(srcdir), + like other ID dependencies. + Suggested by Christian Cornelssen. + 2001-12-05 Alexandre Duret-Lutz * automake.in (handle_dist): Distribute common files which diff --git a/lib/am/tags.am b/lib/am/tags.am index 3b23fdc3..5323dfdc 100644 --- a/lib/am/tags.am +++ b/lib/am/tags.am @@ -27,14 +27,14 @@ tags: TAGS ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) ## Make sure the list of sources is unique. - list='$(SOURCES) $(HEADERS) $(TAGS_FILES)'; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ ## Handle VPATH correctly. if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - mkid -fID $$unique $(LISP) + mkid -fID $$unique ## ------ ##