File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2626
2727set -e
2828set -o pipefail
29+ shopt -s nullglob
2930
3031# load version info
3132# shellcheck source=./version.sh
@@ -82,6 +83,14 @@ for lvl in $(seq 1 $bash_patch_level); do
8283 popd
8384done
8485
86+ echo " = patching with any custom patches we have"
87+ for i in ../custom/* .patch; do
88+ echo $i
89+ pushd bash-${bash_version}
90+ patch -p1 < ../" $i "
91+ popd
92+ done
93+
8594configure_args=()
8695
8796if [ " $target " = " linux" ]; then
Original file line number Diff line number Diff line change 1+ --- a/m4/strtoimax.m4
2+ +++ b/m4/strtoimax.m4
3+ @@ -29,7 +29,7 @@
4+ fi
5+ ])
6+ AC_MSG_RESULT($bash_cv_func_strtoimax)
7+ - if test $bash_cv_func_strtoimax = yes; then
8+ + if test $bash_cv_func_strtoimax = no; then
9+ AC_LIBOBJ(strtoimax)
10+ fi
11+ ])
Original file line number Diff line number Diff line change 11#! /bin/bash
22
33bash_version=" 5.2"
4- bash_patch_level=0
4+ bash_patch_level=15
55musl_version=" 1.2.3"
66
77export bash_version
You can’t perform that action at this time.
0 commit comments