Switch owner to *string to disable concat

If owner is specified in a defaults module, we shouldn't concat that
with the owner specified in a module using that defaults module. A
string pointer will produce the correct behavior (overriding the default)

Bug: 37330627
Test: out/soong/Android-*.mk looks correct after this change
Change-Id: I64574e2ba81c11b042248d7a44702ec4534ee932
This commit is contained in:
Dan Willemsen
2017-07-18 19:42:09 -07:00
parent 3c8ba15bdd
commit efac4a87ee
2 changed files with 3 additions and 3 deletions

View File

@@ -147,7 +147,7 @@ type commonProperties struct {
Proprietary bool
// vendor who owns this module
Owner string
Owner *string
// whether this module is device specific and should be installed into /vendor
Vendor bool