diff options
author | Roland McGrath <roland@gnu.org> | 2003-05-04 23:05:44 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2003-05-04 23:05:44 +0000 |
commit | b710b53daf90b79b7f1a6caab5092043dff17604 (patch) | |
tree | 9c709c3775f780c1eadc90f570d6a7244fc1f1d7 | |
parent | a12ce44f6992d8249f779e95db730a9634571654 (diff) | |
download | glibc-b710b53daf90b79b7f1a6caab5092043dff17604.tar glibc-b710b53daf90b79b7f1a6caab5092043dff17604.tar.gz glibc-b710b53daf90b79b7f1a6caab5092043dff17604.tar.bz2 glibc-b710b53daf90b79b7f1a6caab5092043dff17604.zip |
2003-05-04 Roland McGrath <roland@redhat.com>
* Makerules (+make-deps): Fix target matching.
Use $(sed-remove-dotdot).
-rw-r--r-- | Makerules | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |