summaryrefslogtreecommitdiff
path: root/librt
diff options
context:
space:
mode:
authorBernd Schmidt <bernds_cb1@t-online.de>2008-06-01 16:49:23 +0000
committerBernd Schmidt <bernds_cb1@t-online.de>2008-06-01 16:49:23 +0000
commit68d02d6473eeaa349e4ee5dceef0fcd1ac32aae2 (patch)
tree5a4522a5a004f64cd1709bf7506c071cd12186a9 /librt
parent809dbec58fd772bfa9f7d75f8afdc13b3c4542af (diff)
A slight improvement over my previous commit which ensured we always rebuild
libc when one of the source files changes. Since there are more places which want to depend on $(libc), fix them all to use a new variable $(libc.depend), which contains the filename for which we have a rule.
Diffstat (limited to 'librt')
-rw-r--r--librt/Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/librt/Makefile.in b/librt/Makefile.in
index d8aa87f40..f6433d30b 100644
--- a/librt/Makefile.in
+++ b/librt/Makefile.in
@@ -31,9 +31,9 @@ lib-so-y += $(top_builddir)lib/librt.so
objclean-y += librt_clean
ifeq ($(DOPIC),y)
-$(top_builddir)lib/librt.so: $(top_builddir)lib/librt.a $(libc)
+$(top_builddir)lib/librt.so: $(top_builddir)lib/librt.a $(libc.depend)
else
-$(top_builddir)lib/librt.so: $(librt_OUT)/librt_so.a $(libc)
+$(top_builddir)lib/librt.so: $(librt_OUT)/librt_so.a $(libc.depend)
endif
$(call link.so,$(librt_FULL_NAME),$(MAJOR_VERSION))