From de56da600642e07c45a9964e72e9c147ac5d35ae Mon Sep 17 00:00:00 2001 From: Alexandre Duret-Lutz Date: Wed, 5 Dec 2001 17:15:42 +0000 Subject: [PATCH] * lib/am/tags.am (ID): Search $(LISP) files in $(srcdir), like other ID dependencies. Suggested by Christian Cornelssen. --- ChangeLog | 6 ++++++ lib/am/tags.am | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) 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 ## ------ ## -- 2.43.5