From 316d5f0b01c3d2ed55810fb4a38f0bf5698ced58 Mon Sep 17 00:00:00 2001 From: jchzhou Date: Mon, 22 Sep 2025 10:46:29 +0800 Subject: [PATCH] add a workaround for building issues with newer compilers --- bash.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/bash.spec b/bash.spec index fe6ce43..7886e46 100644 --- a/bash.spec +++ b/bash.spec @@ -2,7 +2,7 @@ Name: bash Version: 5.2.15 -Release: 18 +Release: 19 Summary: It is the Bourne Again Shell License: GPLv3 URL: https://www.gnu.org/software/bash @@ -89,7 +89,7 @@ Man pages and other related documents for %{name}. %build autoconf %configure --with-bash-malloc=no --with-afs -MFLAGS="CPPFLAGS=-D_GNU_SOURCE -DRECYCLES_PIDS -DDEFAULT_PATH_VALUE='\"/usr/local/bin:/usr/bin\"' `getconf LFS_CFLAGS`" +MFLAGS="CPPFLAGS=-D_GNU_SOURCE -DRECYCLES_PIDS -DDEFAULT_PATH_VALUE='\"/usr/local/bin:/usr/bin\"' `getconf LFS_CFLAGS` -Wno-error=return-mismatch" make "$MFLAGS" version.h make "$MFLAGS" -C builtins %make_build "$MFLAGS" @@ -177,6 +177,9 @@ make check %exclude %{_infodir}/dir %changelog +* Tue Sep 16 2025 jchzhou - 5.2.15-19 +- add a workaround for building issues with newer compilers + * Tue Sep 16 2025 fuanan - 5.2.15-18 - fix issue with history file containing one line too few if saving timestamps -- Gitee