From: Roland McGrath Date: Sun, 4 May 2003 23:06:08 +0000 (+0000) Subject: * csu/Makefile ($(objpfx)crt%.o): Replace implicit rule with a static X-Git-Tag: cvs/glibc-2_3_3~765 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4b0b5882391d3286130125c5c50860ba22d46246;p=thirdparty%2Fglibc.git * csu/Makefile ($(objpfx)crt%.o): Replace implicit rule with a static pattern rule. The implicit rule could be ruled out when $(objpfx) didn't exist at the time of its consideration (ugh!). * Makerules (+make-deps): Fix target matching. Use $(sed-remove-dotdot). --- diff --git a/ChangeLog b/ChangeLog index 84181de2292..e2a57b1fc97 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2003-05-04 Roland McGrath + + * csu/Makefile ($(objpfx)crt%.o): Replace implicit rule with a static + pattern rule. The implicit rule could be ruled out when $(objpfx) + didn't exist at the time of its consideration (ugh!). + + * Makerules (+make-deps): Fix target matching. + Use $(sed-remove-dotdot). + 2003-05-03 Ulrich Drepper * nscd/nscd.c (main): Parse config file right after parsing diff --git a/csu/Makefile b/csu/Makefile index 25599936535..2adf57dfba2 100644 --- a/csu/Makefile +++ b/csu/Makefile @@ -99,7 +99,7 @@ generated += $(crtstuff:=.S) initfini.s defs.h omit-deps += $(crtstuff) # Special rules for the building of crti.o and crtn.o -$(objpfx)crt%.o: $(objpfx)crt%.S $(objpfx)defs.h +$(crtstuff:%=$(objpfx)%.o): %.o: %.S $(objpfx)defs.h $(compile.S) -g0 $(ASFLAGS-.os) -o $@ CFLAGS-initfini.s = -g0 -fPIC -fno-inline-functions