[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
TAGS target broken...
From: |
Alfred M. Szmidt |
Subject: |
TAGS target broken... |
Date: |
Fri, 10 Oct 2003 11:11:54 +0200 (MEST) |
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 <ams@kemisten.nu>
* 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
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- TAGS target broken...,
Alfred M. Szmidt <=