summaryrefslogtreecommitdiff
path: root/sdk/sdk.go
diff options
context:
space:
mode:
author Martin Stjernholm <mast@google.com> 2020-06-30 20:34:00 +0100
committer Martin Stjernholm <mast@google.com> 2020-07-07 18:14:26 +0100
commit26ab8e80e49640943fb06e1e62a9c1964b2debf6 (patch)
treef41c87346d31e504e8c4df4cf9f4cf86dd541647 /sdk/sdk.go
parentcc77601d10ea7d61785fe15b1046bb079281610a (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.go2
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
}