diff options
author | Yousong Zhou <yszhou4tech@gmail.com> | 2019-10-24 11:31:50 +0000 |
---|---|---|
committer | Yousong Zhou <yszhou4tech@gmail.com> | 2019-10-24 11:34:34 +0000 |
commit | ed6ba2801c0a97e8b78f96ad71eb0493a0f1823f (patch) | |
tree | 45ee6a6eb9b901ad68199aedc8129044497b3d4f /tools/Makefile | |
parent | 2bc7c519dcc0e7ca09feed24a3b9a105bc49f423 (diff) | |
download | upstream-ed6ba2801c0a97e8b78f96ad71eb0493a0f1823f.tar.gz upstream-ed6ba2801c0a97e8b78f96ad71eb0493a0f1823f.tar.bz2 upstream-ed6ba2801c0a97e8b78f96ad71eb0493a0f1823f.zip |
tools: keep stamp file in $(STAGING_DIR_HOST)
Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
Diffstat (limited to 'tools/Makefile')
-rw-r--r-- | tools/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/Makefile b/tools/Makefile index a161154b80..23671cba91 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -152,6 +152,6 @@ $(curdir)/ := .config prereq $(curdir)/install: $(curdir)/compile tools_enabled = $(foreach tool,$(sort $(tools-y) $(tools-)),$(if $(filter $(tool),$(tools-y)),y,n)) -$(eval $(call stampfile,$(curdir),tools,compile,,_$(subst $(space),,$(tools_enabled)))) -$(eval $(call stampfile,$(curdir),tools,check,$(TMP_DIR)/.build)) +$(eval $(call stampfile,$(curdir),tools,compile,,_$(subst $(space),,$(tools_enabled)),$(STAGING_DIR_HOST))) +$(eval $(call stampfile,$(curdir),tools,check,$(TMP_DIR)/.build,,$(STAGING_DIR_HOST))) $(eval $(call subdir,$(curdir))) |