Skip to content

Commit 86a4373

Browse files
fix: fix libandroid-smem.a path
1 parent f7357bd commit 86a4373

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

udroid/src/proot-utils/proot-fixes.sh

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -314,10 +314,13 @@ while read -r group_name group_id; do
314314
done < <(paste <(id -Gn | tr ' ' '\n') <(id -G | tr ' ' '\n'))
315315

316316
PROG_PRINT "setting up android shmem"
317-
shmem_lib="${PREFIX}/usr/lib/libandroid-shmem.a"
317+
shmem_lib="${PREFIX}/lib/libandroid-shmem.a"
318318
if [ -f "${shmem_lib}" ]; then
319319
PROG_PRINT "copying android shmem library"
320-
cp "${shmem_lib}" "${root_fs_path}/usr/lib/"
320+
cp "${shmem_lib}" "${root_fs_path}/lib/"
321+
# else
322+
# PROG_PRINT "android shmem library not found"
323+
321324
fi
322325

323326
# ## android GID

0 commit comments

Comments
 (0)