Merge "Remove quoting of Jacoco exclusions"

This commit is contained in:
Jeff Gaston 2017-10-25 03:53:29 +00:00 committed by Gerrit Code Review
commit 5dd3057526
1 changed files with 2 additions and 2 deletions

View File

@ -39,13 +39,13 @@ ifeq ($(LOCAL_EMMA_INSTRUMENT),true)
my_include_args :=
endif
# replace '.' with '/' and ',' with ' ', and quote each arg
# replace '.' with '/' and ',' with ' '
ifneq ($(strip $(my_exclude_filter)),)
my_exclude_args := $(my_exclude_filter)
my_exclude_args := $(subst .,/,$(my_exclude_args))
my_exclude_args := $(subst $(comma)$(comma),$(comma),$(my_exclude_args))
my_exclude_args := '$(subst $(comma),' ', $(my_exclude_args))'
my_exclude_args := $(subst $(comma), ,$(my_exclude_args))
else
my_exclude_args :=
endif