Fix shebang for termux.
Termux doesn't have a /bin/sh. So we needto use $SHELL. Keep /bin/sh as much as possible.
This commit is contained in:
parent
9919fb0e9f
commit
a567ab3d9e
60 changed files with 69 additions and 59 deletions
10
configure.ac
10
configure.ac
|
@ -459,6 +459,16 @@ case "$build_os" in
|
|||
esac
|
||||
AC_SUBST(BUILD_EXEEXT)
|
||||
|
||||
# In some build environments like termux /bin/sh is not a valid
|
||||
# shebang. Use $SHELL instead if it's executable and /bin/sh isn't
|
||||
BUILD_SHEBANG=/bin/sh
|
||||
for she in /bin/sh "$SHELL"; do
|
||||
if test -x "$she" ; then
|
||||
BUILD_SHEBANG="$she"
|
||||
fi
|
||||
done
|
||||
AC_SUBST(BUILD_SHEBANG)
|
||||
|
||||
# For gnulib.
|
||||
gl_INIT
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue