soong: Fix multi-arch library paths

This commit is contained in:
Danny Lin 2021-11-07 06:44:23 -08:00
parent 12a99a8c03
commit c65b5d1fbb

View file

@ -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 = {