From 12978f78806f5c340c09ae25cc572aef00eeaace Mon Sep 17 00:00:00 2001 From: Fredrik Fornwall Date: Sun, 26 Jul 2015 13:47:58 -0400 Subject: [PATCH] termux-tools: Make wrapper scripts exec --- packages/termux-tools/am | 2 +- packages/termux-tools/pm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/termux-tools/am b/packages/termux-tools/am index 7857a1500a..934805fc06 100755 --- a/packages/termux-tools/am +++ b/packages/termux-tools/am @@ -3,4 +3,4 @@ # Remove LD_LIBRARY_PATH from environment to avoid conflicting # with system libraries that am may link against. -LD_LIBRARY_PATH= /system/bin/am $@ +LD_LIBRARY_PATH= exec /system/bin/am $@ diff --git a/packages/termux-tools/pm b/packages/termux-tools/pm index 138df11274..9ec34914fb 100755 --- a/packages/termux-tools/pm +++ b/packages/termux-tools/pm @@ -3,4 +3,4 @@ # Remove LD_LIBRARY_PATH from environment to avoid conflicting # with system libraries that pm may link against. -LD_LIBRARY_PATH= /system/bin/pm $@ +LD_LIBRARY_PATH= exec /system/bin/pm $@