summaryrefslogtreecommitdiff
path: root/Makerules
diff options
context:
space:
mode:
authorRoland McGrath <roland@hack.frob.com>2015-07-08 14:21:41 -0700
committerRoland McGrath <roland@hack.frob.com>2015-07-08 14:21:41 -0700
commit85ee9a0d19ec8f5fca60f6bbe65e663329100118 (patch)
treef3c30a761188c1ed55458629d0f597307f9838d0 /Makerules
parentb8a91836171f5722bd5bef6dc2e9ce263c897974 (diff)
Fix some places to use $(LN_S) makefile variable.
Diffstat (limited to 'Makerules')
-rw-r--r--Makerules3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makerules b/Makerules
index 372b3c0103..f9ca3f5021 100644
--- a/Makerules
+++ b/Makerules
@@ -1132,7 +1132,8 @@ endif
define do-install-so
$(do-install-program)
-$(patsubst %,ln -s -f $(@F) $(@D)/$(patsubst %$*.so,%,$(<F))$(libprefix)$*.so,\
+$(patsubst %,$(LN_S) -f $(@F) \
+ $(@D)/$(patsubst %$*.so,%,$(<F))$(libprefix)$*.so,\
$(filter-out %.so,$@))
endef