summaryrefslogtreecommitdiff
path: root/Makerules
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2000-03-24 21:41:15 +0000
committerRoland McGrath <roland@gnu.org>2000-03-24 21:41:15 +0000
commit6a08db097bfbc85337e9b36de24ce1faf3c5cc63 (patch)
tree503cc0022d7a75261ca0f987ccb0dd59d5959045 /Makerules
parent4f173e2c8a9ee8d5cb64d56a4bad391168d78a2b (diff)
* Makerules [$(cross-compiling) = yes] (symbolic-link-prog): Define
using $(LN_S).
Diffstat (limited to 'Makerules')
-rw-r--r--Makerules5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makerules b/Makerules
index d64f35254b..edbf8a5b81 100644
--- a/Makerules
+++ b/Makerules
@@ -677,13 +677,16 @@ mv -f $@.new $@
endef
endif
-ifeq (no,$(cross-compiling))
ifeq (yes,$(build-shared))
+ifeq (no,$(cross-compiling))
symbolic-link-prog := $(common-objpfx)elf/sln
symbolic-link-list := $(common-objpfx)elf/symlink.list
define make-shlib-link
echo $(<F) $@ >> $(symbolic-link-list)
endef
+else # cross-compiling
+# We need a definition that can be used by elf/Makefile's install rules.
+symbolic-link-prog = $(LN_S)
endif
endif
ifndef make-shlib-link