Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0e566094 authored by Jeff Gaston's avatar Jeff Gaston Committed by android-build-merger
Browse files

Merge "Remove quoting of Jacoco exclusions" am: 5dd30575

am: 2afa07b5

Change-Id: I43142a54ee1dbe82fdb90b84d1a22a10692f36a3
parents a5844a44 2afa07b5
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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