diff options
author | Roland McGrath <roland@gnu.org> | 2000-03-24 21:41:15 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2000-03-24 21:41:15 +0000 |
commit | 6a08db097bfbc85337e9b36de24ce1faf3c5cc63 (patch) | |
tree | 503cc0022d7a75261ca0f987ccb0dd59d5959045 /Makerules | |
parent | 4f173e2c8a9ee8d5cb64d56a4bad391168d78a2b (diff) | |
download | glibc-6a08db097bfbc85337e9b36de24ce1faf3c5cc63.tar.gz |
* Makerules [$(cross-compiling) = yes] (symbolic-link-prog): Define
using $(LN_S).
Diffstat (limited to 'Makerules')
-rw-r--r-- | Makerules | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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 |