termux-tools: df wrapper resetting LD_LIBRARY_PATH

This commit is contained in:
Fredrik Fornwall 2015-12-29 18:55:19 -05:00
parent 9228c43493
commit 159214fa63
4 changed files with 10 additions and 6 deletions

View File

@ -1,4 +1,4 @@
#!@TERMUX_PREFIX@/bin/sh
#!/bin/sh
# Remove LD_LIBRARY_PATH from environment to avoid conflicting
# with system libraries that am may link against.

View File

@ -1,11 +1,9 @@
TERMUX_PKG_HOMEPAGE=http://termux.com/
TERMUX_PKG_DESCRIPTION="Some tools for Termux"
TERMUX_PKG_VERSION=0.14
TERMUX_PKG_VERSION=0.15
termux_step_make_install () {
$CXX $CFLAGS $LDFLAGS -std=c++14 -Wall -Wextra -pedantic -Werror $TERMUX_PKG_BUILDER_DIR/*.cpp -o $TERMUX_PREFIX/bin/termux-elf-cleaner
cp $TERMUX_PKG_BUILDER_DIR/{am,pm,termux-fix-shebang,termux-reload-settings,termux-setup-storage,chsh,termux-open-url} $TERMUX_PREFIX/bin/
sed -i "s%\@TERMUX_PREFIX\@%${TERMUX_PREFIX}%g" $TERMUX_PREFIX/bin/termux-fix-shebang
cp -p $TERMUX_PKG_BUILDER_DIR/{am,pm,df,termux-fix-shebang,termux-reload-settings,termux-setup-storage,chsh,termux-open-url} $TERMUX_PREFIX/bin/
}

6
packages/termux-tools/df Executable file
View File

@ -0,0 +1,6 @@
#!/bin/sh
# Remove LD_LIBRARY_PATH from environment to avoid conflicting
# with system libraries that df may link against.
LD_LIBRARY_PATH= exec /system/bin/df $@

View File

@ -1,4 +1,4 @@
#!@TERMUX_PREFIX@/bin/sh
#!/bin/sh
# Remove LD_LIBRARY_PATH from environment to avoid conflicting
# with system libraries that pm may link against.