Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
B
bash
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
certo
bash
Commits
ebfc189c
Commit
ebfc189c
authored
Jun 27, 2023
by
Vladimir Bashkirtsev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Upgraded bash to 5.1.8
parent
96096821
Changes
5
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
22029 additions
and
33 deletions
+22029
-33
Makefile
Makefile
+6
-6
bash-5.0-ncursesw_support.patch
bash-5.0-ncursesw_support.patch
+0
-23
bash-5.1.8-ncursesw_support.patch
bash-5.1.8-ncursesw_support.patch
+22019
-0
bash-5.1.8.tar.gz
bash-5.1.8.tar.gz
+0
-0
build.xml
build.xml
+4
-4
No files found.
Makefile
View file @
ebfc189c
all
:
profile bash-completion dircolors extrapaths readline umask i18n bashrc locale-conf inputrc
all
:
profile bash-completion dircolors extrapaths readline umask i18n bashrc locale-conf inputrc
tar
xf bash-5.
0
.tar.gz
tar
xf bash-5.
1.8
.tar.gz
cd
bash-5.
0
&&
./configure
--build
=
$(CLFS_TARGET)
--prefix
=
/usr
--docdir
=
/usr/share/doc/bash-5.0
--without-bash-malloc
--with-installed-readline
cd
bash-5.
1.8
&&
./configure
--build
=
$(CLFS_TARGET)
--prefix
=
/usr
--docdir
=
/usr/share/doc/bash-5.1.8
--without-bash-malloc
--with-installed-readline
$(MAKE)
-C
bash-5.
0
$(MAKE)
-C
bash-5.
1.8
if
[[
!
"
$(BUILD_OPTIONS)
"
=
~ no-tests
]]
;
then
\
if
[[
!
"
$(BUILD_OPTIONS)
"
=
~ no-tests
]]
;
then
\
cd
bash-5.
0
;
\
cd
bash-5.
1.8
;
\
chown
-Rv
nobody
.
;
\
chown
-Rv
nobody
.
;
\
su nobody
-s
/bin/bash
-c
"PATH=
$$
PATH make tests"
;
\
su nobody
-s
/bin/bash
-c
"PATH=
$$
PATH make tests"
;
\
fi
fi
$(MAKE)
-C
bash-5.
0
install
$(MAKE)
-C
bash-5.
1.8
install
mv
-vf
/usr/bin/bash /bin
mv
-vf
/usr/bin/bash /bin
@
echo
"
$$
PROFILE"
>
/etc/profile
@
echo
"
$$
PROFILE"
>
/etc/profile
install
--directory
--mode
=
0755
--owner
=
root
--group
=
root /etc/profile.d
install
--directory
--mode
=
0755
--owner
=
root
--group
=
root /etc/profile.d
...
@@ -23,7 +23,7 @@ all: profile bash-completion dircolors extrapaths readline umask i18n bashrc loc
...
@@ -23,7 +23,7 @@ all: profile bash-completion dircolors extrapaths readline umask i18n bashrc loc
dircolors
-p
>
/etc/dircolors
dircolors
-p
>
/etc/dircolors
@
echo
"
$$
LOCALE_CONF"
>
/etc/locale.conf
@
echo
"
$$
LOCALE_CONF"
>
/etc/locale.conf
@
echo
"
$$
INPUTRC"
>
/etc/inputrc
@
echo
"
$$
INPUTRC"
>
/etc/inputrc
rm
-rf
bash-5.
0
rm
-rf
bash-5.
1.8
profile
:
profile
:
define
PROFILE
define
PROFILE
...
...
bash-5.0-ncursesw_support.patch
deleted
100644 → 0
View file @
96096821
diff -uNr bash-5.0/configure bash-5.0-ncursesw_support/configure
--- bash-5.0/configure 2019-01-03 01:13:31.000000000 +1030
+++ bash-5.0-ncursesw_support/configure 2019-09-02 00:45:01.464542841 +0930
@@ -5290,6 +5290,9 @@
elif test $bash_cv_termcap_lib = libncurses; then
TERMCAP_LIB=-lncurses
TERMCAP_DEP=
+elif test $bash_cv_termcap_lib = libncursesw; then
+TERMCAP_LIB=-lncursesw
+TERMCAP_DEP=
elif test $bash_cv_termcap_lib = libc; then
TERMCAP_LIB=
TERMCAP_DEP=
@@ -16171,6 +16174,9 @@
elif test $bash_cv_termcap_lib = libncurses; then
TERMCAP_LIB=-lncurses
TERMCAP_DEP=
+elif test $bash_cv_termcap_lib = libncursesw; then
+TERMCAP_LIB=-lncursesw
+TERMCAP_DEP=
elif test $bash_cv_termcap_lib = libc; then
TERMCAP_LIB=
TERMCAP_DEP=
bash-5.1.8-ncursesw_support.patch
0 → 100644
View file @
ebfc189c
This diff is collapsed.
Click to expand it.
bash-5.
0
.tar.gz
→
bash-5.
1.8
.tar.gz
View file @
ebfc189c
No preview for this file type
build.xml
View file @
ebfc189c
<project
name=
"bash"
>
<project
name=
"bash"
>
<target
name=
"temporary-bash"
>
<target
name=
"temporary-bash"
>
<property
name=
"makedir"
value=
"${builddir}/bash-5.
0
"
/>
<property
name=
"makedir"
value=
"${builddir}/bash-5.
1.8
"
/>
<exec
executable=
"tar"
failonerror=
"true"
>
<exec
executable=
"tar"
failonerror=
"true"
>
<arg
line=
"xf packages/bash/bash-5.
0
.tar.gz -C ${builddir}"
/>
<arg
line=
"xf packages/bash/bash-5.
1.8
.tar.gz -C ${builddir}"
/>
</exec>
</exec>
<exec
executable=
"patch"
dir=
"${builddir}/bash-5.
0
"
failonerror=
"true"
>
<exec
executable=
"patch"
dir=
"${builddir}/bash-5.
1.8
"
failonerror=
"true"
>
<arg
line=
"-Np1 -i ${basedir}/packages/bash/bash-5.
0
-ncursesw_support.patch"
/>
<arg
line=
"-Np1 -i ${basedir}/packages/bash/bash-5.
1.8
-ncursesw_support.patch"
/>
</exec>
</exec>
<echo
file=
"${makedir}/config.cache"
>
ac_cv_func_mmap_fixed_mapped=yes
<echo
file=
"${makedir}/config.cache"
>
ac_cv_func_mmap_fixed_mapped=yes
ac_cv_func_strcoll_works=yes
ac_cv_func_strcoll_works=yes
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment