Skip to content

Commit 9147848

Browse files
authored
Merge pull request #2606 from kvdroid/develop
removed `usr` and `lib` from ndk library path in `librt` recipe
2 parents 26d464a + 4487002 commit 9147848

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pythonforandroid/recipes/librt/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class LibRt(Recipe):
1919
finishes'''
2020

2121
def build_arch(self, arch):
22-
libc_path = join(arch.ndk_lib_dir, 'usr', 'lib', 'libc')
22+
libc_path = join(arch.ndk_lib_dir, 'libc')
2323
# Create a temporary folder to add to link path with a fake librt.so:
2424
fake_librt_temp_folder = join(
2525
self.get_build_dir(arch.arch),

0 commit comments

Comments
 (0)