toolchain: stop generating broken symlink in TOOLCHAIN_DIR/lib
It turns out that the symlink may exists already by the time the toolchain Makefile gets an opportunity to run. While we asked to replace the target, ln doesn't do so until after dereferencing the existing symlink. This results in an unintended symlink that refers to itself. Instead, create the link without dereferencing any symlinks by using the -n option. Signed-off-by: John Szakmeister <john@szakmeister.net> SVN-Revision: 36140
This commit is contained in:
parent
98ef9e5411
commit
c0de55b32c
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@ ifneq ($(ARCH),)
|
||||||
$(if $(QUIET),,set -x;) \
|
$(if $(QUIET),,set -x;) \
|
||||||
mkdir -p "$$dir"; \
|
mkdir -p "$$dir"; \
|
||||||
cd "$$dir"; \
|
cd "$$dir"; \
|
||||||
ln -sf lib lib64; \
|
ln -nsf lib lib64; \
|
||||||
mkdir -p stamp lib usr/include usr/lib ; \
|
mkdir -p stamp lib usr/include usr/lib ; \
|
||||||
); done
|
); done
|
||||||
@grep GCC_VERSION $@ >/dev/null 2>&1 || $(INSTALL_DATA) $(TOPDIR)/toolchain/info.mk $@
|
@grep GCC_VERSION $@ >/dev/null 2>&1 || $(INSTALL_DATA) $(TOPDIR)/toolchain/info.mk $@
|
||||||
|
|
Loading…
Reference in a new issue