aboutsummaryrefslogtreecommitdiff
path: root/Makerules
diff options
context:
space:
mode:
authorStan Shebs <stanshebs@google.com>2018-02-14 09:44:15 -0800
committerStan Shebs <stanshebs@google.com>2018-02-14 09:44:15 -0800
commit654fbaf1b77c7ae93325d6c0e651a9f0ccff465d (patch)
tree210e76e37666467de0b670cc83b8ee424fd0eafb /Makerules
parent6302c3ccf839007f8632964e99a3e5d038a5e9e2 (diff)
downloadglibc-654fbaf1b77c7ae93325d6c0e651a9f0ccff465d.zip
glibc-654fbaf1b77c7ae93325d6c0e651a9f0ccff465d.tar.gz
glibc-654fbaf1b77c7ae93325d6c0e651a9f0ccff465d.tar.bz2
Use LN_S in more places to forestall hard link creation
Diffstat (limited to 'Makerules')
-rw-r--r--Makerules4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makerules b/Makerules
index 7689488..6528790 100644
--- a/Makerules
+++ b/Makerules
@@ -737,7 +737,7 @@ endif
ifeq (,$(filter sunrpc,$(subdirs)))
$(common-objpfx)linkobj/libc_pic.a: $(common-objpfx)libc_pic.a
$(make-target-directory)
- ln -f $< $@
+ $(LN_S) -f $< $@
else
$(common-objpfx)linkobj/libc_pic.a: $(common-objpfx)libc_pic.a \
$(common-objpfx)sunrpc/librpc_compat_pic.a
@@ -1095,7 +1095,7 @@ mv -f $@.new $@
endef
define make-link-multidir
$(make-target-directory)
-ln -f $(objpfx)/$(@F) $@
+$(LN_S) -f $(objpfx)/$(@F) $@
endef
endif