From 59b384dabe20a4930b1c8ff4e0f48367cc080662 Mon Sep 17 00:00:00 2001 From: Felix Fietkau 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 SVN-Revision: 32556 --- include/toolchain-build.mk | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'include') diff --git a/include/toolchain-build.mk b/include/toolchain-build.mk index a0bc4061fc..d2fdb0281a 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