2003-05-04 Roland McGrath <roland@redhat.com>
authorRoland McGrath <roland@gnu.org>
Sun, 4 May 2003 23:05:44 +0000 (23:05 +0000)
committerRoland McGrath <roland@gnu.org>
Sun, 4 May 2003 23:05:44 +0000 (23:05 +0000)
* Makerules (+make-deps): Fix target matching.
Use $(sed-remove-dotdot).

Makerules

index b8e7a9e..ef4658d 100644 (file)
--- a/Makerules
+++ b/Makerules
@@ -379,9 +379,9 @@ S-CPPFLAGS = -DASSEMBLER $(asm-CPPFLAGS)
 define +make-deps
 $(make-target-directory)
 $(+mkdep) $< $(if $(filter %.c,$<),$(CFLAGS)) \
-            $(CPPFLAGS) $($(patsubst .%,%,$(suffix $(<F)))-CPPFLAGS) | sed \
--e 's,$(subst .,\.,$*)\.o,$(foreach o,$(all-object-suffixes),$(@:.d=$o)) $@,' \
-$(sed-remove-objpfx) > $(@:.d=.T)
+            $(CPPFLAGS) $($(patsubst .%,%,$(suffix $(<F)))-CPPFLAGS) | sed -e\
+'s,$(subst .,\.,$(@F:.d=.o)),$(foreach o,$(all-object-suffixes),$(@:.d=$o)) $@,' \
+$(sed-remove-objpfx) $(sed-remove-dotdot) > $(@:.d=.T)
 mv -f $(@:.d=.T) $@ $(generate-md5)
 endef