From 5213e2b431a6e307d1a6fe4d6f688e6a04e02e5b Mon Sep 17 00:00:00 2001 From: Paul Duffin Date: Thu, 25 Jul 2019 12:22:47 +0100 Subject: [PATCH] Correct tags on StaticSharedLibraryProperties.Cflags Remove path as cflags are not paths. Test: m nothing Change-Id: Ia3f3064cb6642a67e8320ab3c472af2ad5863b52 --- cc/library.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cc/library.go b/cc/library.go index 24985dff5..7cbfdb534 100644 --- a/cc/library.go +++ b/cc/library.go @@ -33,7 +33,7 @@ import ( type StaticSharedLibraryProperties struct { Srcs []string `android:"path,arch_variant"` - Cflags []string `android:"path,arch_variant"` + Cflags []string `android:"arch_variant"` Enabled *bool `android:"arch_variant"` Whole_static_libs []string `android:"arch_variant"`