mirror of git://sourceware.org/git/glibc.git
* Makerules [$(cross-compiling) = yes] (symbolic-link-prog): Define
using $(LN_S).
This commit is contained in:
parent
4f173e2c8a
commit
6a08db097b
|
@ -1,5 +1,8 @@
|
||||||
2000-03-24 Roland McGrath <roland@baalperazim.frob.com>
|
2000-03-24 Roland McGrath <roland@baalperazim.frob.com>
|
||||||
|
|
||||||
|
* Makerules [$(cross-compiling) = yes] (symbolic-link-prog): Define
|
||||||
|
using $(LN_S).
|
||||||
|
|
||||||
* sysdeps/mach/hurd/if_index.c: New file.
|
* sysdeps/mach/hurd/if_index.c: New file.
|
||||||
|
|
||||||
* sysdeps/unix/sysv/linux/net/if.h: Moved to ...
|
* sysdeps/unix/sysv/linux/net/if.h: Moved to ...
|
||||||
|
|
|
@ -677,13 +677,16 @@ mv -f $@.new $@
|
||||||
endef
|
endef
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq (no,$(cross-compiling))
|
|
||||||
ifeq (yes,$(build-shared))
|
ifeq (yes,$(build-shared))
|
||||||
|
ifeq (no,$(cross-compiling))
|
||||||
symbolic-link-prog := $(common-objpfx)elf/sln
|
symbolic-link-prog := $(common-objpfx)elf/sln
|
||||||
symbolic-link-list := $(common-objpfx)elf/symlink.list
|
symbolic-link-list := $(common-objpfx)elf/symlink.list
|
||||||
define make-shlib-link
|
define make-shlib-link
|
||||||
echo $(<F) $@ >> $(symbolic-link-list)
|
echo $(<F) $@ >> $(symbolic-link-list)
|
||||||
endef
|
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
|
||||||
endif
|
endif
|
||||||
ifndef make-shlib-link
|
ifndef make-shlib-link
|
||||||
|
|
Loading…
Reference in New Issue