We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7357bd commit 86a4373Copy full SHA for 86a4373
udroid/src/proot-utils/proot-fixes.sh
@@ -314,10 +314,13 @@ while read -r group_name group_id; do
314
done < <(paste <(id -Gn | tr ' ' '\n') <(id -G | tr ' ' '\n'))
315
316
PROG_PRINT "setting up android shmem"
317
-shmem_lib="${PREFIX}/usr/lib/libandroid-shmem.a"
+shmem_lib="${PREFIX}/lib/libandroid-shmem.a"
318
if [ -f "${shmem_lib}" ]; then
319
PROG_PRINT "copying android shmem library"
320
- cp "${shmem_lib}" "${root_fs_path}/usr/lib/"
+ cp "${shmem_lib}" "${root_fs_path}/lib/"
321
+# else
322
+# PROG_PRINT "android shmem library not found"
323
+
324
fi
325
326
# ## android GID
0 commit comments