[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
15/74: gnu: automake: Update to 1.17; fixes build with gcc-14.
From: |
guix-commits |
Subject: |
15/74: gnu: automake: Update to 1.17; fixes build with gcc-14. |
Date: |
Mon, 16 Dec 2024 03:34:54 -0500 (EST) |
janneke pushed a commit to branch core-packages-team
in repository guix.
commit a08693e6041752516b90261a1b0e166a74b03582
Author: Janneke Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Thu Dec 5 10:44:38 2024 +0100
gnu: automake: Update to 1.17; fixes build with gcc-14.
* gnu/packages/autotools.scm (automake): Update to 1.17. This fixes the
build
with gcc-14.
[arguments]: Rembove custom #:configure-flags.
Change-Id: Iedddebb6245c85f7a7c532594e6bc0fd9b151584
---
gnu/packages/autotools.scm | 18 ++++++++++--------
1 file changed, 10 insertions(+), 8 deletions(-)
diff --git a/gnu/packages/autotools.scm b/gnu/packages/autotools.scm
index 685e7f0e8a..10c01640ce 100644
--- a/gnu/packages/autotools.scm
+++ b/gnu/packages/autotools.scm
@@ -320,14 +320,14 @@ output is indexed in many ways to simplify browsing.")
(define-public automake
(package
(name "automake")
- (version "1.16.5")
+ (version "1.17")
(source (origin
(method url-fetch)
(uri (string-append "mirror://gnu/automake/automake-"
version ".tar.xz"))
(sha256
(base32
- "0sdl32qxdy7m06iggmkkvf7j520rmmgbsjzbm7fgnxwxdp6mh7gh"))
+ "146rkdcwri2dkwn3pjrjs9v0wm4xyav9vvq4yw5vj4qy87yc2849"))
(patches
(search-patches "automake-skip-amhello-tests.patch"))))
(build-system gnu-build-system)
@@ -346,7 +346,6 @@ output is indexed in many ways to simplify browsing.")
(srfi srfi-1)
(srfi srfi-26)
(rnrs io ports))
- #:configure-flags #~'("CFLAGS=-g -O2 -Wno-implicit-function-declaration")
#:phases
#~(modify-phases %standard-phases
(add-before 'patch-source-shebangs 'patch-tests-shebangs
@@ -362,11 +361,14 @@ output is indexed in many ways to simplify browsing.")
(setenv "CONFIG_SHELL" sh))))
(add-before 'check 'skip-test
(lambda _
- ;; This test requires 'etags' and fails if it's missing.
- ;; Skip it.
- (substitute* "t/tags-lisp-space.sh"
- (("^required.*" all)
- (string-append "exit 77\n" all "\n")))))
+ (substitute*
+ ;; This test requires 'etags' and fails if it's missing.
+ '("t/tags-lisp-space.sh"
+ ;; This test fails, probably a timestamp thing:
+ ;; make: Nothing to be done for 'all'.
+ "t/remake-aclocal-version-mismatch.sh")
+ (("^#!.*" all)
+ (string-append all "exit 77;\n")))))
#$@(if (%current-target-system)
#~((add-after 'install 'patch-non-shebang-references
- 20/74: gnu: libstdc++: Fix build for x86-linux with gcc-14., (continued)
- 20/74: gnu: libstdc++: Fix build for x86-linux with gcc-14., guix-commits, 2024/12/16
- 45/74: gnu: openldap: Update to 2.6.9; fixes build with gcc-14., guix-commits, 2024/12/16
- 37/74: gnu: fontforge: Update to 20230101 and fix build with gettext-0.23., guix-commits, 2024/12/16
- 01/74: Revert "Partial revert "gnu: bootstrap: %bootstrap-gcc: Also wrap g++ for the 64bit Hurd."", guix-commits, 2024/12/16
- 09/74: gnu: libffi: Update to 3.4.6; fixes build with gcc-14., guix-commits, 2024/12/16
- 08/74: gnu: libffi: Fix build for x86_64-linux with gcc-14., guix-commits, 2024/12/16
- 02/74: Revert "Partial revert "gnu: bootstrap: %bootstrap-glibc: Also fix libm.so."", guix-commits, 2024/12/16
- 07/74: gnu: commencement: gcc-final: Fix build for x86-linux with gcc-14., guix-commits, 2024/12/16
- 17/74: gnu: automake-1.16.5: Skip tests., guix-commits, 2024/12/16
- 19/74: gnu: elfutils: Update to 0.192; fixes build with gcc-14., guix-commits, 2024/12/16
- 15/74: gnu: automake: Update to 1.17; fixes build with gcc-14.,
guix-commits <=
- 22/74: gnu: expect: Fix build with gcc-14., guix-commits, 2024/12/16
- 27/74: gnu: cmake-bootstrap: Fix build with gcc-14., guix-commits, 2024/12/16
- 29/74: gnu: llvm-13: Fix build with gcc-14., guix-commits, 2024/12/16
- 38/74: gnu: epson-inkjet-printer-escpr: Fix build with gcc-14., guix-commits, 2024/12/16
- 30/74: gnu: hplip: Update to 3.24.4 and fix build with gcc-14., guix-commits, 2024/12/16
- 44/74: gnu: ntp: Fix build with gcc-14., guix-commits, 2024/12/16
- 33/74: gnu: localed: Fix build with gcc-14., guix-commits, 2024/12/16
- 43/74: gnu: gn: Fix build with gcc-14., guix-commits, 2024/12/16
- 51/74: gnu: python-numpy: Update to 1.26.4 and fix build with gcc-14., guix-commits, 2024/12/16
- 39/74: gnu: cyrus-sasl: Fix build mwith gcc-14., guix-commits, 2024/12/16