mirror of
https://gitlab.com/Nanolx/NanoDroid
synced 2024-10-31 09:20:23 +00:00
update GNU Bash to 5.1-beta1
This commit is contained in:
parent
dc2ce52764
commit
078bc8e0a6
@ -12,7 +12,7 @@
|
||||
* note: missing `nanodroid_init` will still make the default value used, as desired
|
||||
|
||||
* Installer, Patcher, SysTest, Uninstaller
|
||||
* improve detection of system-as-root devices and fix issues mount `/system`
|
||||
* improve detection of system-as-root devices and fix issues mounting `/system`
|
||||
* ensure we mount `/vendor` block device if direct mounting fails
|
||||
* fixes issue with mounting `/vendor` on some devices in TWRP
|
||||
* only create `/system/vendor -> /vendor` compat link needed on some devices if there's no `vendor_${SLOT}` partition
|
||||
@ -42,6 +42,11 @@
|
||||
* update and improve Issues section
|
||||
* some minor improvements
|
||||
|
||||
## Updates
|
||||
|
||||
* manual
|
||||
* GNU Bash (5.1-beta1)
|
||||
|
||||
## 22.9.20200910 "[Tiefseequappe]"
|
||||
|
||||
### General Changes
|
||||
|
Binary file not shown.
Binary file not shown.
@ -7,7 +7,7 @@
|
||||
# chet@cwru.edu and, optionally, to bash-testers@cwru.edu.
|
||||
# Other versions send mail to bug-bash@gnu.org.
|
||||
#
|
||||
# Copyright (C) 1996-2004 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1996-2020 Free Software Foundation, Inc.
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
@ -32,7 +32,7 @@ CC="arm-linux-gnueabi-gcc"
|
||||
CFLAGS="-g -O2 -Wno-parentheses -Wno-format-security"
|
||||
RELEASE="5.1"
|
||||
PATCHLEVEL="0"
|
||||
RELSTATUS="alpha"
|
||||
RELSTATUS="beta"
|
||||
MACHTYPE="arm-unknown-linux-gnueabi"
|
||||
|
||||
PATH=/bin:/usr/bin:/usr/local/bin:$PATH
|
||||
@ -43,7 +43,7 @@ export PATH
|
||||
|
||||
#Securely create a temporary directory for the temporary files
|
||||
TEMPDIR=$TMPDIR/bbug.$$
|
||||
(umask 077 && mkdir $TEMPDIR) || {
|
||||
(umask 077 && mkdir "$TEMPDIR") || {
|
||||
echo "$0: could not create temporary directory" >&2
|
||||
exit 1
|
||||
}
|
||||
@ -132,6 +132,8 @@ if [ -z "$DEFEDITOR" ] && [ -z "$EDITOR" ]; then
|
||||
DEFEDITOR=emacs
|
||||
elif [ -x /usr/bin/xemacs ]; then
|
||||
DEFEDITOR=xemacs
|
||||
elif [ -x /usr/bin/nano ]; then
|
||||
DEFEDITOR=nano
|
||||
elif [ -x /usr/contrib/bin/jove ]; then
|
||||
DEFEDITOR=jove
|
||||
elif [ -x /usr/local/bin/jove ]; then
|
||||
|
@ -7,7 +7,7 @@
|
||||
# chet@cwru.edu and, optionally, to bash-testers@cwru.edu.
|
||||
# Other versions send mail to bug-bash@gnu.org.
|
||||
#
|
||||
# Copyright (C) 1996-2004 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1996-2020 Free Software Foundation, Inc.
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
@ -26,14 +26,14 @@
|
||||
# configuration section:
|
||||
# these variables are filled in by the make target in Makefile
|
||||
#
|
||||
MACHINE="x86_64"
|
||||
MACHINE="i686"
|
||||
OS="linux-gnu"
|
||||
CC="gcc"
|
||||
CFLAGS="-m32 "
|
||||
RELEASE="5.1"
|
||||
PATCHLEVEL="0"
|
||||
RELSTATUS="alpha"
|
||||
MACHTYPE="x86_64-pc-linux-gnu"
|
||||
RELSTATUS="beta"
|
||||
MACHTYPE="i686-pc-linux-gnu"
|
||||
|
||||
PATH=/bin:/usr/bin:/usr/local/bin:$PATH
|
||||
export PATH
|
||||
@ -43,7 +43,7 @@ export PATH
|
||||
|
||||
#Securely create a temporary directory for the temporary files
|
||||
TEMPDIR=$TMPDIR/bbug.$$
|
||||
(umask 077 && mkdir $TEMPDIR) || {
|
||||
(umask 077 && mkdir "$TEMPDIR") || {
|
||||
echo "$0: could not create temporary directory" >&2
|
||||
exit 1
|
||||
}
|
||||
@ -132,6 +132,8 @@ if [ -z "$DEFEDITOR" ] && [ -z "$EDITOR" ]; then
|
||||
DEFEDITOR=emacs
|
||||
elif [ -x /usr/bin/xemacs ]; then
|
||||
DEFEDITOR=xemacs
|
||||
elif [ -x /usr/bin/nano ]; then
|
||||
DEFEDITOR=nano
|
||||
elif [ -x /usr/contrib/bin/jove ]; then
|
||||
DEFEDITOR=jove
|
||||
elif [ -x /usr/local/bin/jove ]; then
|
||||
|
Loading…
Reference in New Issue
Block a user