From: Roland McGrath Date: Wed, 29 May 1996 05:09:31 +0000 (+0000) Subject: Wed May 29 00:52:20 1996 Roland McGrath X-Git-Tag: cvs/libc-960529~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d06b536dc10bd096d7141fc058399e83275c8e3b;p=thirdparty%2Fglibc.git Wed May 29 00:52:20 1996 Roland McGrath * extra-lib.mk (alltypes-$(lib)): Don't append $(objpfx)$(lib).so. (others): Instead, make this depend on it. --- diff --git a/ChangeLog b/ChangeLog index 23c069582a5..fcdf91c2942 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Wed May 29 00:52:20 1996 Roland McGrath + + * extra-lib.mk (alltypes-$(lib)): Don't append $(objpfx)$(lib).so. + (others): Instead, make this depend on it. + Tue May 28 04:38:10 1996 Ulrich Drepper * limits.h: Change MB_LEN_MAX to 6. A 31-bit ISO 10646 diff --git a/extra-lib.mk b/extra-lib.mk index ea5812ca65f..99fce5b1107 100644 --- a/extra-lib.mk +++ b/extra-lib.mk @@ -23,9 +23,6 @@ extra-objs += $(foreach o,$(object-suffixes-$(lib)),$($(lib)-routines:=$o)) alltypes-$(lib) := $(foreach o,$(object-suffixes-$(lib)),\ $(objpfx)$(patsubst %,$(libtype$o),\ $(lib:lib%=%))) -ifneq (,$(filter .so,$(object-suffixes-$(lib)))) -alltypes-$(lib) += $(objpfx)$(lib).so -endif ifeq (,$($(lib)-no-lib-dep)) lib-noranlib: $(alltypes-$(lib)) @@ -33,6 +30,13 @@ else others: $(alltypes-$(lib)) endif +# The linked shared library is never a dependent of lib-noranlib, +# because linking it will depend on libc.so already being built. +ifneq (,$(filter .so,$(object-suffixes-$(lib)))) +others: $(objpfx)$(lib).so +endif + + # Use o-iterator.mk to generate a rule for each flavor of library. define o-iterator-doit $(objpfx)$(patsubst %,$(libtype$o),$(lib:lib%=%)): \