Hi,

seems like tha TAGS target is broken, no idea for how long but seems
for quite some time.  When running `make TAGS' in either `$(srcdir)'
or `$(objdir)' tags never get produced since the check if TAGSFILES is
empty is always fullfiled (this is at line 414 in [hurd]/Makeconf).
This is because the following line:

   $(strip$(TAGSFILES))

is treated like the variable `strip$(TAGSFILES)' which is always
empty, since it doesn't exist.

2003-10-09  Alfred M. Szmidt  <[EMAIL PROTECTED]>
        
        * Makeconf (TAGS): Add a space between the function `strip'
        and its argument.

Index: Makeconf
--- Makeconf
+++ Makeconf
@@ -411,7 +411,7 @@
 endif
 
 TAGS: $(TAGSFILES)
-ifeq ($(strip($(TAGSFILES))),)
+ifeq ($(strip ($(TAGSFILES))),)
 # no tags, but parent will include this file, so make empty one.
        > $@
 else


_______________________________________________
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd

Reply via email to