diff options
author | Felix Fietkau <nbd@openwrt.org> | 2016-01-03 14:44:42 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2016-01-03 14:44:42 +0000 |
commit | 8751abca488228b17cd655d488314e08e95a84a9 (patch) | |
tree | a27c9052e4b28025c3a927b88a951e4a4aabd5d0 /target/toolchain/Makefile | |
parent | 4b3b4e9d3837500f23c28865c33ae7586c147d01 (diff) | |
download | master-187ad058-8751abca488228b17cd655d488314e08e95a84a9.tar.gz master-187ad058-8751abca488228b17cd655d488314e08e95a84a9.tar.bz2 master-187ad058-8751abca488228b17cd655d488314e08e95a84a9.zip |
targets: Use configured distribution name for SDK, IB, and Toolchain tarball names
We allow to configure the version distribution name;
let's also use it for the tarballs (SDK, ImageBuilder,
and SDK).
Signed-off-by: Daniel Dickinson <openwrt@daniel.thecshore.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@48081 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/toolchain/Makefile')
-rw-r--r-- | target/toolchain/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/toolchain/Makefile b/target/toolchain/Makefile index ebc7e25c9b..08e716660b 100644 --- a/target/toolchain/Makefile +++ b/target/toolchain/Makefile @@ -14,7 +14,7 @@ include $(INCLUDE_DIR)/version.mk override MAKEFLAGS= -TOOLCHAIN_NAME:=OpenWrt-Toolchain-$(if $(CONFIG_VERSION_FILENAMES),$(VERSION_NUMBER)-)$(BOARD)$(if $(SUBTARGET),-$(SUBTARGET))_gcc-$(GCCV)$(DIR_SUFFIX).$(HOST_OS)-$(HOST_ARCH) +TOOLCHAIN_NAME:=$(VERSION_DIST)-Toolchain-$(if $(CONFIG_VERSION_FILENAMES),$(VERSION_NUMBER)-)$(BOARD)$(if $(SUBTARGET),-$(SUBTARGET))_gcc-$(GCCV)$(DIR_SUFFIX).$(HOST_OS)-$(HOST_ARCH) TOOLCHAIN_BUILD_DIR:=$(BUILD_DIR)/$(TOOLCHAIN_NAME) EXCLUDE_DIRS:=*/ccache \ */initial \ |