This causes various issues in other places that assume that host binaries are staged in STAGING_DIR_HOST. Since all the right places use HOST_BUILD_PREFIX, override that instead. This fixes some issues with quilt on toolchain dirs Signed-off-by: Felix Fietkau <nbd@nbd.name>
		
			
				
	
	
		
			26 lines
		
	
	
		
			552 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			552 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
#
 | 
						|
# Copyright (C) 2009 OpenWrt.org
 | 
						|
#
 | 
						|
# This is free software, licensed under the GNU General Public License v2.
 | 
						|
# See /LICENSE for more information.
 | 
						|
#
 | 
						|
 | 
						|
override CONFIG_AUTOREBUILD=
 | 
						|
override CONFIG_AUTOREMOVE=
 | 
						|
 | 
						|
HOST_BUILD_PREFIX:=$(TOOLCHAIN_DIR)
 | 
						|
BUILD_DIR_HOST:=$(BUILD_DIR_TOOLCHAIN)
 | 
						|
 | 
						|
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
 |