From ce8f6f456bbfba44245f0c8c625ccaa6bfad06ec Mon Sep 17 00:00:00 2001 From: Kieran Moy Date: Fri, 12 Aug 2022 14:30:34 +0800 Subject: [PATCH 1/2] scripts: replace ash with sh ash is unavailable on termux. According to login.in, it should be sh. --- scripts/chsh.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/chsh.in b/scripts/chsh.in index a1fe23c..b74f58e 100644 --- a/scripts/chsh.in +++ b/scripts/chsh.in @@ -33,7 +33,7 @@ while true; do done DEFAULT_SHELL=bash -if [ ! -x @TERMUX_PREFIX@/bin/$DEFAULT_SHELL ]; then DEFAULT_SHELL=ash; fi +if [ ! -x @TERMUX_PREFIX@/bin/$DEFAULT_SHELL ]; then DEFAULT_SHELL=sh; fi echo Changing the login shell echo Enter the new value, or press ENTER for the default From 0785c8c2dd907184ed9567537cde11ccfedd3b09 Mon Sep 17 00:00:00 2001 From: Yaksh Bariya Date: Fri, 12 Aug 2022 14:01:58 +0530 Subject: [PATCH 2/2] v1.26.1 --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 5723055..bc8f0ed 100644 --- a/configure.ac +++ b/configure.ac @@ -22,7 +22,7 @@ dnl along with termux-tools. If not, see dnl . AC_PREREQ([2.69]) -AC_INIT([termux-tools], [1.26.0], [support@termux.dev]) +AC_INIT([termux-tools], [1.26.1], [support@termux.dev]) AM_INIT_AUTOMAKE([foreign])