From 21d83c6817aa8d34b91daf02decbcc353171dfe1 Mon Sep 17 00:00:00 2001 From: Ying Wang Date: Thu, 24 Sep 2015 16:35:36 -0700 Subject: [PATCH] Substitue "/" with "-" in the MODULES-IN phony goal names. Bug: 24309760 Change-Id: I2372d0be0a811b11f3000646a2b7804e93852a84 --- testrunner/runtest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testrunner/runtest.py b/testrunner/runtest.py index dc1632d89..44969997c 100755 --- a/testrunner/runtest.py +++ b/testrunner/runtest.py @@ -289,7 +289,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))