Merge "TARGET_FS_CONFIG_GEN is a list, not a single path"
This commit is contained in:
commit
3c4a9159c9
|
@ -1053,6 +1053,6 @@ func (c *config) ProductHiddenAPIStubsTest() []string {
|
||||||
return c.productVariables.ProductHiddenAPIStubsTest
|
return c.productVariables.ProductHiddenAPIStubsTest
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *deviceConfig) TargetFSConfigGen() *string {
|
func (c *deviceConfig) TargetFSConfigGen() []string {
|
||||||
return c.config.productVariables.TargetFSConfigGen
|
return c.config.productVariables.TargetFSConfigGen
|
||||||
}
|
}
|
||||||
|
|
|
@ -288,7 +288,7 @@ type productVariables struct {
|
||||||
ProductHiddenAPIStubsSystem []string `json:",omitempty"`
|
ProductHiddenAPIStubsSystem []string `json:",omitempty"`
|
||||||
ProductHiddenAPIStubsTest []string `json:",omitempty"`
|
ProductHiddenAPIStubsTest []string `json:",omitempty"`
|
||||||
|
|
||||||
TargetFSConfigGen *string `json:",omitempty"`
|
TargetFSConfigGen []string `json:",omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func boolPtr(v bool) *bool {
|
func boolPtr(v bool) *bool {
|
||||||
|
|
Loading…
Reference in New Issue