From b284b583becd3a4da78dc934b382f8d3ae9e8c06 Mon Sep 17 00:00:00 2001 From: nbd Date: Sat, 30 Jun 2012 21:43:59 +0000 Subject: toolchain: fix up lib64 symlink to lib before copying the initial prefix dir to avoid errors on copying git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32556 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- include/toolchain-build.mk | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'include/toolchain-build.mk') diff --git a/include/toolchain-build.mk b/include/toolchain-build.mk index a0bc4061f..d2fdb0281 100644 --- a/include/toolchain-build.mk +++ b/include/toolchain-build.mk @@ -16,3 +16,12 @@ TOOLCHAIN_JOBS?=$(if $(CONFIG_TOOLCHAIN_PARALLEL),-j$(CONFIG_PKG_BUILD_JOBS)) include $(INCLUDE_DIR)/host-build.mk HOST_STAMP_PREPARED=$(HOST_BUILD_DIR)/.prepared + +define FixupLibdir + if [ -d $(1)/lib64 -a \! -L $(1)/lib64 ]; then \ + mkdir -p $(1)/lib; \ + mv $(1)/lib64/* $(1)/lib/; \ + rm -rf $(1)/lib64; \ + fi + ln -sf lib $(1)/lib64 +endef -- cgit v1.2.3