am e4cded63: Merge "Substitue "/" with "-" in the MODULES-IN phony goal names."

* commit 'e4cded631dae5fb121891f3ff9a9d72075f21b0e':
  Substitue "/" with "-" in the MODULES-IN phony goal names.
This commit is contained in:
Ying Wang
2015-09-24 23:59:26 +00:00
committed by Android Git Automerger

View File

@@ -301,7 +301,7 @@ class TestRunner(object):
d = d[2:]
if d.endswith("/"):
d = d[:-1]
mmma_goals.append("MODULES-IN/" + d)
mmma_goals.append("MODULES-IN-" + d.replace("/","-"))
alt_cmd = 'make -j%s -C "%s" -f build/core/main.mk %s %s' % (
self._options.make_jobs, self._root_path, extra_args_string, " ".join(mmma_goals))