summaryrefslogtreecommitdiff
path: root/CleanSpec.mk
diff options
context:
space:
mode:
author Colin Cross <ccross@android.com> 2021-10-25 18:44:00 -0700
committer Colin Cross <ccross@android.com> 2021-11-01 15:03:01 -0700
commitbca6483b0779b07da84f48b74ba771045459d2f3 (patch)
tree3d570d1e6898b13be9ebe2a41028a8e25686bce8 /CleanSpec.mk
parent3a79e5b459fa33fb76583c9e05f76b7d73665420 (diff)
Move tools compiled by Soong to HOST_OUT_EXECUTABLES
Soong now installs native tools to HOST_OUT_EXECUTABLES instead of SOONG_HOST_OUT_EXECUTABLES. Also add a cleanspec for SOONG_HOST_OUT to remove old files from SOONG_HOST_OUT_EXECUTABLES. Bug: 204136549 Test: m checkbuild Change-Id: Id18213b9294b6d2cf78f657740c6d5a02733b8ad
Diffstat (limited to 'CleanSpec.mk')
-rw-r--r--CleanSpec.mk3
1 files changed, 3 insertions, 0 deletions
diff --git a/CleanSpec.mk b/CleanSpec.mk
index 639c4ef0f3..fff49b33fb 100644
--- a/CleanSpec.mk
+++ b/CleanSpec.mk
@@ -760,6 +760,9 @@ $(call add-clean-step, rm -rf $(PRODUCT_OUT)/vendor-ramdisk)
# Common R directory has been removed.
$(call add-clean-step, rm -rf $(OUT_DIR)/target/common/R)
+# Most of SOONG_HOST_OUT_EXECUTABLES has been moved to HOST_OUT_EXECUTABLES
+$(call add-clean-step, rm -rf $(SOONG_HOST_OUT))
+
# ************************************************
# NEWER CLEAN STEPS MUST BE AT THE END OF THE LIST
# ************************************************