Merge "TARGET_FS_CONFIG_GEN is a list, not a single path"

This commit is contained in:
Treehugger Robot 2019-04-18 19:37:49 +00:00 committed by Gerrit Code Review
commit 3c4a9159c9
2 changed files with 2 additions and 2 deletions

View File

@ -1053,6 +1053,6 @@ func (c *config) ProductHiddenAPIStubsTest() []string {
return c.productVariables.ProductHiddenAPIStubsTest
}
func (c *deviceConfig) TargetFSConfigGen() *string {
func (c *deviceConfig) TargetFSConfigGen() []string {
return c.config.productVariables.TargetFSConfigGen
}

View File

@ -288,7 +288,7 @@ type productVariables struct {
ProductHiddenAPIStubsSystem []string `json:",omitempty"`
ProductHiddenAPIStubsTest []string `json:",omitempty"`
TargetFSConfigGen *string `json:",omitempty"`
TargetFSConfigGen []string `json:",omitempty"`
}
func boolPtr(v bool) *bool {