diff options
author | Jo-Philipp Wich <jo@mein.io> | 2016-04-18 12:28:16 +0200 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2016-04-18 12:28:16 +0200 |
commit | f8ce7e028d99e3b781961d728ae9e3a4a24e3814 (patch) | |
tree | 90aee2fd6afda711aca701448565179fd56bce21 /target/sdk | |
parent | 0f6f518e7aff35e2aad140755f49962c9266820a (diff) | |
download | upstream-f8ce7e028d99e3b781961d728ae9e3a4a24e3814.tar.gz upstream-f8ce7e028d99e3b781961d728ae9e3a4a24e3814.tar.bz2 upstream-f8ce7e028d99e3b781961d728ae9e3a4a24e3814.zip |
sdk: do not exclude ccache executable
Change tar exclude pattern to skip ccache directory contents but not the
ccache executable itself.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'target/sdk')
-rw-r--r-- | target/sdk/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/target/sdk/Makefile b/target/sdk/Makefile index 0246afbb87..7f277f9aff 100644 --- a/target/sdk/Makefile +++ b/target/sdk/Makefile @@ -1,5 +1,6 @@ # # Copyright (C) 2006-2014 OpenWrt.org +# Copyright (C) 2016 LEDE Project # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -18,7 +19,7 @@ SDK_BUILD_DIR:=$(BUILD_DIR)/$(SDK_NAME) STAGING_SUBDIR_HOST := staging_dir/host STAGING_SUBDIR_TOOLCHAIN := staging_dir/toolchain-$(ARCH)$(ARCH_SUFFIX)_gcc-$(GCCV)_$(LIBC)-$(LIBCV)$(if $(CONFIG_arm),_eabi) -EXCLUDE_DIRS:=*/ccache \ +EXCLUDE_DIRS:=*/ccache/* \ */stamp \ */stampfiles \ */man \ |