diff options
author | 2020-06-30 20:34:00 +0100 | |
---|---|---|
committer | 2020-07-07 18:14:26 +0100 | |
commit | 26ab8e80e49640943fb06e1e62a9c1964b2debf6 (patch) | |
tree | f41c87346d31e504e8c4df4cf9f4cf86dd541647 /sdk/sdk.go | |
parent | cc77601d10ea7d61785fe15b1046bb079281610a (diff) |
Prepend default to allow overriding in the bp file.
Bug: 143948100
Bug: 151303681
Test: m nothing
Change-Id: Iefcf4fbe9d2971ce267242185165f0c38f68db30
Diffstat (limited to 'sdk/sdk.go')
-rw-r--r-- | sdk/sdk.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sdk/sdk.go b/sdk/sdk.go index c2685055f..3e760080e 100644 --- a/sdk/sdk.go +++ b/sdk/sdk.go @@ -218,7 +218,7 @@ func newSdkModule(moduleExports bool) *sdk { Compile_multilib *string } p := &props{Compile_multilib: proptools.StringPtr("both")} - ctx.AppendProperties(p) + ctx.PrependProperties(p) }) return s } |