From: Felix Fietkau Date: Fri, 8 Jan 2016 23:18:18 +0000 (+0000) Subject: target/sdk: do not include the target staging dir anymore, it is unnecessary now X-Git-Tag: reboot~947 X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fopenwrt.git;a=commitdiff_plain;h=7dfbac8073e1f5fd47f85743b9ebead842ed3c70 target/sdk: do not include the target staging dir anymore, it is unnecessary now Signed-off-by: Felix Fietkau SVN-Revision: 48157 --- diff --git a/target/sdk/Makefile b/target/sdk/Makefile index a90b177322..4fec516eed 100644 --- a/target/sdk/Makefile +++ b/target/sdk/Makefile @@ -16,7 +16,6 @@ SDK_NAME:=$(VERSION_DIST)-SDK-$(if $(CONFIG_VERSION_FILENAMES),$(VERSION_NUMBER) SDK_BUILD_DIR:=$(BUILD_DIR)/$(SDK_NAME) STAGING_SUBDIR_HOST := staging_dir/host -STAGING_SUBDIR_TARGET := staging_dir/target-$(ARCH)$(ARCH_SUFFIX)_$(LIBC)-$(LIBCV)$(if $(CONFIG_arm),_eabi) STAGING_SUBDIR_TOOLCHAIN := staging_dir/toolchain-$(ARCH)$(ARCH_SUFFIX)_gcc-$(GCCV)_$(LIBC)-$(LIBCV)$(if $(CONFIG_arm),_eabi) EXCLUDE_DIRS:=*/ccache \ @@ -33,7 +32,6 @@ EXCLUDE_DIRS:=*/ccache \ SDK_DIRS = \ $(STAGING_SUBDIR_HOST) \ - $(STAGING_SUBDIR_TARGET) \ $(STAGING_SUBDIR_TOOLCHAIN) BASE_FEED:=$(shell git config --get remote.origin.url 2>/dev/null | sed -ne 's/^/src-git base /p')