mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 14:56:54 +01:00
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
This commit is contained in:
parent
380e83491c
commit
143ec73ecb
1 changed files with 10 additions and 8 deletions
|
@ -320,14 +320,14 @@ (define-public autobuild
|
||||||
(define-public automake
|
(define-public automake
|
||||||
(package
|
(package
|
||||||
(name "automake")
|
(name "automake")
|
||||||
(version "1.16.5")
|
(version "1.17")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "mirror://gnu/automake/automake-"
|
(uri (string-append "mirror://gnu/automake/automake-"
|
||||||
version ".tar.xz"))
|
version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0sdl32qxdy7m06iggmkkvf7j520rmmgbsjzbm7fgnxwxdp6mh7gh"))
|
"146rkdcwri2dkwn3pjrjs9v0wm4xyav9vvq4yw5vj4qy87yc2849"))
|
||||||
(patches
|
(patches
|
||||||
(search-patches "automake-skip-amhello-tests.patch"))))
|
(search-patches "automake-skip-amhello-tests.patch"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
|
@ -346,7 +346,6 @@ (define-public automake
|
||||||
(srfi srfi-1)
|
(srfi srfi-1)
|
||||||
(srfi srfi-26)
|
(srfi srfi-26)
|
||||||
(rnrs io ports))
|
(rnrs io ports))
|
||||||
#:configure-flags #~'("CFLAGS=-g -O2 -Wno-implicit-function-declaration")
|
|
||||||
#:phases
|
#:phases
|
||||||
#~(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
(add-before 'patch-source-shebangs 'patch-tests-shebangs
|
(add-before 'patch-source-shebangs 'patch-tests-shebangs
|
||||||
|
@ -362,11 +361,14 @@ (define-public automake
|
||||||
(setenv "CONFIG_SHELL" sh))))
|
(setenv "CONFIG_SHELL" sh))))
|
||||||
(add-before 'check 'skip-test
|
(add-before 'check 'skip-test
|
||||||
(lambda _
|
(lambda _
|
||||||
;; This test requires 'etags' and fails if it's missing.
|
(substitute*
|
||||||
;; Skip it.
|
;; This test requires 'etags' and fails if it's missing.
|
||||||
(substitute* "t/tags-lisp-space.sh"
|
'("t/tags-lisp-space.sh"
|
||||||
(("^required.*" all)
|
;; This test fails, probably a timestamp thing:
|
||||||
(string-append "exit 77\n" all "\n")))))
|
;; make: Nothing to be done for 'all'.
|
||||||
|
"t/remake-aclocal-version-mismatch.sh")
|
||||||
|
(("^#!.*" all)
|
||||||
|
(string-append all "exit 77;\n")))))
|
||||||
|
|
||||||
#$@(if (%current-target-system)
|
#$@(if (%current-target-system)
|
||||||
#~((add-after 'install 'patch-non-shebang-references
|
#~((add-after 'install 'patch-non-shebang-references
|
||||||
|
|
Loading…
Reference in a new issue