a0010caca3
Also add a am wrapper script which clears LD_LIBRARY_PATH before calling /system/bin/am.
7 lines
175 B
Bash
Executable File
7 lines
175 B
Bash
Executable File
#!@TERMUX_PREFIX@/bin/sh
|
|
|
|
# Remove LD_LIBRARY_PATH from environment to avoid conflicting
|
|
# with system libraries that am may link against.
|
|
|
|
LD_LIBRARY_PATH= /system/bin/am $@
|