From abcc7eca2a246bf187632ff23ea3ba0dedf9dd00 Mon Sep 17 00:00:00 2001 From: ag-tsotetsi Date: Wed, 25 Mar 2026 16:26:52 +0200 Subject: [PATCH] trying to disable gettext deps --- stage/toolchain/bash.bash | 1 + stage/toolchain/coreutils.bash | 1 + stage/toolchain/diffutils.bash | 1 + stage/toolchain/findutils.bash | 1 + stage/toolchain/gawk.bash | 1 + stage/toolchain/grep.bash | 1 + stage/toolchain/m4.bash | 1 + stage/toolchain/make.bash | 1 + stage/toolchain/sed.bash | 1 + stage/toolchain/tar.bash | 1 + stage/toolchain/xz.bash | 1 + 11 files changed, 11 insertions(+) diff --git a/stage/toolchain/bash.bash b/stage/toolchain/bash.bash index 2dc7ad1..686a0a2 100644 --- a/stage/toolchain/bash.bash +++ b/stage/toolchain/bash.bash @@ -8,6 +8,7 @@ cd "$SOURCES" && tar xf bash-$BASH_VERSION.tar.gz && cd bash-$BASH_VERSION --build=$(sh support/config.guess) \ --host=$TARGET \ --without-bash-malloc \ + --disable-nls \ --silent \ --quiet diff --git a/stage/toolchain/coreutils.bash b/stage/toolchain/coreutils.bash index ab55c56..d3b9c80 100644 --- a/stage/toolchain/coreutils.bash +++ b/stage/toolchain/coreutils.bash @@ -11,6 +11,7 @@ sed -r '/_GL_EXTERN_C/s/w?memchr|bsearch/(&)/' -i $(find -name \*.in.h) --build=$(build-aux/config.guess) \ --enable-install-program=hostname \ --enable-no-install-program=kill,uptime \ + --disable-nls \ --silent \ --quiet diff --git a/stage/toolchain/diffutils.bash b/stage/toolchain/diffutils.bash index 89caaec..dbac99a 100644 --- a/stage/toolchain/diffutils.bash +++ b/stage/toolchain/diffutils.bash @@ -8,6 +8,7 @@ cd "$SOURCES" && tar xf diffutils-$DIFFUTILS_VERSION.tar.xz && cd diffutils-$DIF --host=$TARGET \ gl_cv_func_strcasecmp_works=y \ --build=$(./build-aux/config.guess) \ + --disable-nls \ --silent \ --quiet diff --git a/stage/toolchain/findutils.bash b/stage/toolchain/findutils.bash index 9f30415..b36a638 100644 --- a/stage/toolchain/findutils.bash +++ b/stage/toolchain/findutils.bash @@ -8,6 +8,7 @@ cd "$SOURCES" && tar xf findutils-$FINDUTILS_VERSION.tar.xz && cd findutils-$FIN --localstatedir=/var/lib/locate \ --host=$TARGET \ --build=$(build-aux/config.guess) \ + --disable-nls \ --silent \ --quiet diff --git a/stage/toolchain/gawk.bash b/stage/toolchain/gawk.bash index 98d1504..813c214 100644 --- a/stage/toolchain/gawk.bash +++ b/stage/toolchain/gawk.bash @@ -9,6 +9,7 @@ sed -i 's/extras//' Makefile.in --prefix=/usr \ --host=$TARGET \ --build=$(build-aux/config.guess) \ + --disable-nls \ --silent \ --quiet diff --git a/stage/toolchain/grep.bash b/stage/toolchain/grep.bash index bbdeaa2..aca6fbc 100644 --- a/stage/toolchain/grep.bash +++ b/stage/toolchain/grep.bash @@ -7,6 +7,7 @@ cd "$SOURCES" && tar xf grep-$GREP_VERSION.tar.xz && cd grep-$GREP_VERSION --prefix=/usr \ --host=$TARGET \ --build=$(build-aux/config.guess) \ + --disable-nls \ --silent \ --quiet diff --git a/stage/toolchain/m4.bash b/stage/toolchain/m4.bash index 82bc932..f81570d 100644 --- a/stage/toolchain/m4.bash +++ b/stage/toolchain/m4.bash @@ -9,6 +9,7 @@ sed -r '/_GL_EXTERN_C/s/w?memchr|bsearch/(&)/' -i $(find -name \*.in.h) --prefix=/usr \ --host=$TARGET \ --build=$(build-aux/config.guess) \ + --disable-nls \ --silent \ --quiet diff --git a/stage/toolchain/make.bash b/stage/toolchain/make.bash index ccbbb3a..7aa02ae 100644 --- a/stage/toolchain/make.bash +++ b/stage/toolchain/make.bash @@ -7,6 +7,7 @@ cd "$SOURCES" && tar xf make-$MAKE_VERSION.tar.gz && cd make-$MAKE_VERSION --prefix=/usr \ --host=$TARGET \ --build=$(build-aux/config.guess) \ + --disable-nls \ --silent \ --quiet diff --git a/stage/toolchain/sed.bash b/stage/toolchain/sed.bash index 5ad1aac..61b1ec2 100644 --- a/stage/toolchain/sed.bash +++ b/stage/toolchain/sed.bash @@ -7,6 +7,7 @@ cd "$SOURCES" && tar xf sed-$SED_VERSION.tar.xz && cd sed-$SED_VERSION --prefix=/usr \ --host=$TARGET \ --build=$(build-aux/config.guess) \ + --disable-nls \ --silent \ --quiet diff --git a/stage/toolchain/tar.bash b/stage/toolchain/tar.bash index 8ea3eb5..4d4d769 100644 --- a/stage/toolchain/tar.bash +++ b/stage/toolchain/tar.bash @@ -7,6 +7,7 @@ cd "$SOURCES" && tar xf tar-$TAR_VERSION.tar.xz && cd tar-$TAR_VERSION --prefix=/usr \ --host=$TARGET \ --build=$(build-aux/config.guess) \ + --disable-nls \ --silent \ --quiet diff --git a/stage/toolchain/xz.bash b/stage/toolchain/xz.bash index b575756..fc3dc8a 100644 --- a/stage/toolchain/xz.bash +++ b/stage/toolchain/xz.bash @@ -9,6 +9,7 @@ cd "$SOURCES" && tar xf xz-$XZ_VERSION.tar.xz && cd xz-$XZ_VERSION --build=$(build-aux/config.guess) \ --disable-static \ --silent \ + --disable-nls \ --quiet make && make DESTDIR="$SYSROOT" install