aboutsummaryrefslogtreecommitdiff
path: root/extra/bash/build
diff options
context:
space:
mode:
authorCem Keylan <cem@ckyln.com>2021-11-26 01:35:03 +0100
committerCem Keylan <cem@ckyln.com>2021-11-26 01:35:03 +0100
commit14188ed8ff9c191731388ae8748689e610e82a28 (patch)
tree4c70e298e7e444416bf5e88d267a0f6b026dbdc4 /extra/bash/build
parent23056f0a205956a5a90ffd1ff6964f6b217566ac (diff)
downloadrepository-14188ed8ff9c191731388ae8748689e610e82a28.tar.gz
bash: bump to 5.1.p12
Diffstat (limited to 'extra/bash/build')
-rwxr-xr-xextra/bash/build6
1 files changed, 5 insertions, 1 deletions
diff --git a/extra/bash/build b/extra/bash/build
index abc3769a..2daea242 100755
--- a/extra/bash/build
+++ b/extra/bash/build
@@ -4,10 +4,14 @@ for patch in bash51-0??; do
patch -p0 < "$patch"
done
+# Even with '--disable-nls', bash build fails if gettext-tiny is available
+# on the system. We can completely disable it, by adding the "--with-included"
+# gettext flag
./configure \
--prefix=/usr \
--without-bash-malloc \
- --disable-nls
+ --disable-nls \
+ --with-included-gettext
export MAKEFLAGS="TERMCAP_LIB=/usr/lib/libncursesw.a $MAKEFLAGS"