soong: Fix multi-arch library paths
This commit is contained in:
parent
12a99a8c03
commit
c65b5d1fbb
1 changed files with 2 additions and 2 deletions
|
@ -175,10 +175,10 @@ export function blobToSoongModule(
|
|||
|
||||
// For multi-arch
|
||||
let targetSrcs32 = (curArch == '32') ? targetSrcs : {
|
||||
srcs: [`proprietary/${otherSrcPath}`],
|
||||
srcs: [otherSrcPath],
|
||||
} as TargetSrcs
|
||||
let targetSrcs64 = (curArch == '64') ? targetSrcs : {
|
||||
srcs: [`proprietary/${otherSrcPath}`],
|
||||
srcs: [otherSrcPath],
|
||||
} as TargetSrcs
|
||||
|
||||
moduleSpecific = {
|
||||
|
|
Loading…
Reference in a new issue