Skip to content

Commit

Permalink
Merge pull request #2605 from kvdroid/develop
Browse files Browse the repository at this point in the history
changed arch.ndk_platform to arch.ndk_lib_dir in `librt` recipe
  • Loading branch information
AndreMiras authored May 26, 2022
2 parents b9af853 + 6b68f42 commit 26d464a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pythonforandroid/recipes/librt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class LibRt(Recipe):
finishes'''

def build_arch(self, arch):
libc_path = join(arch.ndk_platform, 'usr', 'lib', 'libc')
libc_path = join(arch.ndk_lib_dir, 'usr', 'lib', 'libc')
# Create a temporary folder to add to link path with a fake librt.so:
fake_librt_temp_folder = join(
self.get_build_dir(arch.arch),
Expand Down

0 comments on commit 26d464a

Please sign in to comment.