From 3686b8d279c4ef5840a2001695de234ecdb313d9 Mon Sep 17 00:00:00 2001 From: John Crispin Date: Wed, 22 Aug 2012 15:07:32 +0000 Subject: derive system from hostcc to allow building inside a chroot SVN-Revision: 33228 --- target/sdk/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'target/sdk/Makefile') diff --git a/target/sdk/Makefile b/target/sdk/Makefile index 9917798..51bf47b 100644 --- a/target/sdk/Makefile +++ b/target/sdk/Makefile @@ -11,8 +11,8 @@ include $(INCLUDE_DIR)/host.mk override MAKEFLAGS= -PKG_OS:=$(shell uname -s) -PKG_CPU:=$(shell uname -m) +PKG_OS:=$(word 2,$(subst -, ,$(shell $(HOSTCC) -dumpmachine))) +PKG_CPU:=$(word 1,$(subst -, ,$(shell $(HOSTCC) -dumpmachine))) SDK_NAME:=OpenWrt-SDK-$(BOARD)-for-$(PKG_OS)-$(PKG_CPU)-gcc-$(GCCV)_$(LIBC)-$(LIBCV) SDK_BUILD_DIR:=$(BUILD_DIR)/$(SDK_NAME) -- cgit v1.1