]> sourceware.org Git - automake.git/commitdiff
* lib/am/tags.am (ID): Search $(LISP) files in $(srcdir),
authorAlexandre Duret-Lutz <adl@gnu.org>
Wed, 5 Dec 2001 17:15:42 +0000 (17:15 +0000)
committerAlexandre Duret-Lutz <adl@gnu.org>
Wed, 5 Dec 2001 17:15:42 +0000 (17:15 +0000)
like other ID dependencies.
Suggested by Christian Cornelssen.

ChangeLog
lib/am/tags.am

index 163e0cc01000c6e000175a15a0d20205452d7f7b..96a7c68c3f17eb11570bf2b6083bd293449ef9c5 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2001-12-05  Alexandre Duret-Lutz  <duret_g@epita.fr>
+
+       * lib/am/tags.am (ID): Search $(LISP) files in $(srcdir),
+       like other ID dependencies.
+       Suggested by Christian Cornelssen.
+
 2001-12-05  Alexandre Duret-Lutz  <duret_g@epita.fr>
 
        * automake.in (handle_dist): Distribute common files which
index 3b23fdc3b4e76b7294cc63d64ce01ec27983d817..5323dfdcce7bb1a312d0e35a6b8a8b202ecf3ea7 100644 (file)
@@ -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
 
 
 ## ------ ##
This page took 0.03718 seconds and 5 git commands to generate.