python: $PREFIX/bin/sh instead of /system/bin/sh

This commit is contained in:
Fredrik Fornwall
2015-12-02 05:55:58 -05:00
parent 2fd1858183
commit 89a13ec524
2 changed files with 2 additions and 2 deletions

View File

@@ -6,7 +6,7 @@ diff -u -r ../Python-3.4.1/Lib/subprocess.py ./Lib/subprocess.py
if shell:
- args = ["/bin/sh", "-c"] + args
+ args = ["/system/bin/sh", "-c"] + args
+ args = ["@TERMUX_PREFIX@/bin/sh", "-c"] + args
if executable:
args[0] = executable