[git commit] librt: Rephrase librt.so library dependencies
Bernhard Reutner-Fischer
rep.dot.nop at gmail.com
Tue Apr 14 21:58:41 UTC 2015
commit: http://git.uclibc.org/uClibc/commit/?id=19c4bf396ead620a84051102e7f0914200fcc5e0
branch: http://git.uclibc.org/uClibc/commit/?id=refs/heads/master
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop at gmail.com>
---
librt/Makefile.in | 7 +++++--
1 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/librt/Makefile.in b/librt/Makefile.in
index e211bd2..2fde48c 100644
--- a/librt/Makefile.in
+++ b/librt/Makefile.in
@@ -61,11 +61,14 @@ lib-a-y += $(top_builddir)lib/librt.a
lib-so-y += $(top_builddir)lib/librt.so
endif
+librt-dep-y := $(libc.depend)
+librt-dep-$(UCLIBC_HAS_THREADS_NATIVE) += $(libpthread.depend) $(libdl.depend)
+
# for NPTL we need SHARED regardless of DOPIC
ifeq ($(if $(UCLIBC_HAS_THREADS_NATIVE),,$(DOPIC)),y)
-$(top_builddir)lib/librt.so: $(top_builddir)lib/librt.a $(libc.depend)
+$(top_builddir)lib/librt.so: $(top_builddir)lib/librt.a $(librt-dep-y)
else
-$(top_builddir)lib/librt.so: $(librt_OUT)/librt_so.a $(libc.depend) $(libpthread.depend) $(libdl.depend)
+$(top_builddir)lib/librt.so: $(librt_OUT)/librt_so.a $(librt-dep-y)
endif
$(call link.so,$(librt_FULL_NAME),$(ABI_VERSION))
More information about the uClibc-cvs
mailing list