From 920303cbb219774f361df80b7480b487641d1d6a Mon Sep 17 00:00:00 2001 From: nbd Date: Mon, 28 Nov 2011 19:19:33 +0000 Subject: [PATCH] build: add a lib64 symlink in staging_dir/host and staging_dir/toolchain* for systems that prefer this as library path (e.g. current SuSE), fixes mpfr and gcc build git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29352 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- toolchain/Makefile | 1 + tools/Makefile | 1 + 2 files changed, 2 insertions(+) diff --git a/toolchain/Makefile b/toolchain/Makefile index 5585b76db..0443924c5 100644 --- a/toolchain/Makefile +++ b/toolchain/Makefile @@ -60,6 +60,7 @@ ifneq ($(ARCH),) $(if $(QUIET),,set -x;) \ mkdir -p "$$dir"; \ cd "$$dir"; \ + ln -sf lib lib64; \ mkdir -p stamp lib usr/include usr/lib ; \ ); done @grep GCC_VERSION $@ >/dev/null 2>&1 || $(INSTALL_DATA) $(TOPDIR)/toolchain/info.mk $@ diff --git a/tools/Makefile b/tools/Makefile index a21edd954..0c2706d7a 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -83,6 +83,7 @@ $(STAGING_DIR_HOST)/.prepared: $(TMP_DIR)/.build mkdir -p $(BUILD_DIR_HOST)/stamp $(STAGING_DIR_HOST)/include/sys $(INSTALL_DATA) $(TOPDIR)/tools/include/*.h $(STAGING_DIR_HOST)/include/ $(INSTALL_DATA) $(TOPDIR)/tools/include/sys/*.h $(STAGING_DIR_HOST)/include/sys/ + ln -sf lib $(STAGING_DIR_HOST)/lib64 touch $@ -- 2.20.1