diff options
author | 2020-09-29 11:45:18 -0700 | |
---|---|---|
committer | 2020-09-29 18:53:18 +0000 | |
commit | 2ff2a488e68b9435040f4f82ac6e4732a92e2a71 (patch) | |
tree | f75789e4c6209dede1eaf003eefffc4506e70d37 /services/incremental/IncrementalService.cpp | |
parent | 46c6d7279ba834ee13b8f46bf6dd726e8bf65681 (diff) |
[incremental] fix x86 native lib extraction
Test: atest CtsIncrementalInstallHostTestCases
BUG: 168138334
Change-Id: I7b76afbd88cf3f38c1527c9c917ce179e0bde589
Diffstat (limited to 'services/incremental/IncrementalService.cpp')
-rw-r--r-- | services/incremental/IncrementalService.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/services/incremental/IncrementalService.cpp b/services/incremental/IncrementalService.cpp index e8bf468f032e..bbcb3122c9bb 100644 --- a/services/incremental/IncrementalService.cpp +++ b/services/incremental/IncrementalService.cpp @@ -1468,7 +1468,7 @@ bool IncrementalService::configureNativeBinaries(StorageId storage, std::string_ // Need a shared pointer: will be passing it into all unpacking jobs. std::shared_ptr<ZipArchive> zipFile(zipFileHandle, [](ZipArchiveHandle h) { CloseArchive(h); }); void* cookie = nullptr; - const auto libFilePrefix = path::join(constants().libDir, abi); + const auto libFilePrefix = path::join(constants().libDir, abi) + "/"; if (StartIteration(zipFile.get(), &cookie, libFilePrefix, constants().libSuffix)) { LOG(ERROR) << "Failed to start zip iteration for " << apkFullPath; return false; |