From 742f6023930dc15afd25d2b4ff2987ddef1de313 Mon Sep 17 00:00:00 2001 From: jchzhou Date: Tue, 5 Nov 2024 10:35:20 +0800 Subject: [PATCH] remove obsolete 'configure' file & regenerate with autoreconf Pre-generated configure file in upstream tarball hardcodes aclocal version to 1 .16 but the autoconf pkg providing aclocal had been upgraded to 1.17+ since oE 24.09. Remove it and regenerate with autoconf before configuring solve that is- sue. Signed-off-by: jchzhou --- anaconda.spec | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/anaconda.spec b/anaconda.spec index fb00622..4284fdd 100644 --- a/anaconda.spec +++ b/anaconda.spec @@ -1,7 +1,7 @@ %define _empty_manifest_terminate_build 0 Name: anaconda Version: 36.16.5 -Release: 38 +Release: 39 Summary: Graphical system installer License: GPLv2+ and MIT URL: http://fedoraproject.org/wiki/Anaconda @@ -187,6 +187,10 @@ runtime on NFS/HTTP/FTP servers or local disks. %autosetup -n %{name}-%{version} -p1 %build +# remove pre-generated configure file that requires hardcoded aclocal version +# that won't be satisfied on oE 24.09+, generate it again with autoreconf +rm -rvf ./configure +autoreconf -f -i -v # use actual build-time release number, not tarball creation time release number %if "%toolchain" == "clang" %configure ANACONDA_RELEASE=%{release} CC=clang @@ -318,6 +322,12 @@ update-desktop-database &> /dev/null || : %{_prefix}/libexec/anaconda/dd_* %changelog +* Fri Sep 20 2024 jchzhou - 36.16.5-39 +- Type:bugfix +- ID:NA +- SUG:NA +- DESC: remove obsolete 'configure' file & generate it again with autoreconf + * Tue Aug 20 2024 songmingliang - 36.16.5-38 - Type:bugfix - ID:NA -- Gitee