Browse Source

termux-tools: avoid busybox usage

master
Leonid Plyushch 5 years ago
parent
commit
63e03c4c79
No known key found for this signature in database GPG Key ID: 45F2964132545795
  1. 2
      packages/termux-tools/login

2
packages/termux-tools/login

@ -20,7 +20,7 @@ fi
if [ -f @TERMUX_PREFIX@/lib/libtermux-exec.so ]; then
export LD_PRELOAD=@TERMUX_PREFIX@/lib/libtermux-exec.so
$SHELL -c "busybox true" > /dev/null 2>&1 || unset LD_PRELOAD
$SHELL -c "coreutils --coreutils-prog=true" > /dev/null 2>&1 || unset LD_PRELOAD
fi
if [ -n "$TERM" ]; then

Loading…
Cancel
Save