aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Cross <ccross@android.com>2015-10-23 21:38:12 -0700
committerColin Cross <ccross@android.com>2015-10-23 21:38:12 -0700
commitec1b561981ee6dada4399b80d413b6c84a3177bd (patch)
treec4739dc977f374e727b92774bb4be6a439ce6cb0
parent373a1e36a99c7af15a00723c7561db3906281ab5 (diff)
downloadbuild-ec1b561981ee6dada4399b80d413b6c84a3177bd.tar.gz
Add dummy description for GET-INSTALL-PATH
kati takes the first @echo command in a rule and turns it in to a ninja description that gets pretty-printed. The GET-INSTALL-PATH is only @echo commands and is parsed by development/testrunner/runtest.py, so it fails to parse the pretty-printed first test. Add a dummy @echo to GET-INSTALL-PATH for kati to use as the description, so the rest of the @echo commands are left unmodified. Change-Id: I192fde48b26726a2f6760448f819243bd2f21312
-rw-r--r--core/main.mk1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/main.mk b/core/main.mk
index e20128b86f..15b3c27149 100644
--- a/core/main.mk
+++ b/core/main.mk
@@ -504,6 +504,7 @@ NOTICE-TARGET-%: ;
# A helper goal printing out install paths
.PHONY: GET-INSTALL-PATH
GET-INSTALL-PATH:
+ @echo "Install paths for modules in $(ONE_SHOT_MAKEFILE):"
@$(foreach m, $(ALL_MODULES), $(if $(ALL_MODULES.$(m).INSTALLED), \
echo 'INSTALL-PATH: $(m) $(ALL_MODULES.$(m).INSTALLED)';))