summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Orion Hodson <oth@google.com> 2020-07-28 14:08:16 +0100
committer Orion Hodson <oth@google.com> 2020-07-28 14:48:49 +0000
commit587a7b21fc429a159f72f36f26f354763bd23bff (patch)
tree342e2e725d85701f23ceaf171e12314c4a91373f
parent2446feb60919ceb09b5cab388291a86ccdc9be10 (diff)
Narrow CleanSpec.mk for libart*simulator-container.so
First attempt too broad and bad for developers with spinning disks. Bug: 162049686 Test: manual Change-Id: Idaa0c6775f7e46769c2145c4ec4cc8b4bf4d75be
-rw-r--r--CleanSpec.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/CleanSpec.mk b/CleanSpec.mk
index 90a23dbcc2..04b266252d 100644
--- a/CleanSpec.mk
+++ b/CleanSpec.mk
@@ -106,7 +106,7 @@ $(call add-clean-step, find $(OUT_DIR) -name "*.oat" -o -name "*.odex" -o -name
$(call add-clean-step, rm -rf $(PRODUCT_OUT)/system/apex/com.android.art)
# Remove 'libart[d]?-simulator-container.so' which was briefly in the ART AREX.
-$(call add-clean-step, find $(OUT_DIR) -name 'libart*-simulator-container.so' -type f | xargs rm -f)
+$(call add-clean-step, find $(OUT_DIR)/soong/.intermediates/art -name 'libart*-simulator-container.so' -type f | xargs rm -f)
# ************************************************
# NEWER CLEAN STEPS MUST BE AT THE END OF THE LIST