From: Alexandre Duret-Lutz Date: Wed, 5 Dec 2001 17:15:43 +0000 (+0000) Subject: * lib/am/tags.am (ID): Search $(LISP) files in $(srcdir), X-Git-Tag: Release-1-5b~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d67f8e59b1b93d46f5a2eda914b00694c940bc61;p=thirdparty%2Fautomake.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 163e0cc01..96a7c68c3 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 3b23fdc3b..5323dfdcc 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 ## ------ ##