mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 05:57:04 +01:00
gnu: automake: Fix build with gcc-14.
* gnu/packages/autotools.scm (automake)[arguments]: Add "CC=-Wno-implicit-function-declaration" to #:configure-flags. Change-Id: Ie3318f9717beb9871887fa01a53c4b999e917275
This commit is contained in:
parent
bc79f93f8d
commit
6d8897051b
1 changed files with 2 additions and 1 deletions
|
@ -10,7 +10,7 @@
|
|||
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||
;;; Copyright © 2018 Ricardo Wurmus <rekado@elephly.net>
|
||||
;;; Copyright © 2019 Pierre-Moana Levesque <pierre.moana.levesque@gmail.com>
|
||||
;;; Copyright © 2020, 2023 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
||||
;;; Copyright © 2020, 2023, 2024 Janneke Nieuwenhuizen <janneke@gnu.org>
|
||||
;;; Copyright © 2021 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
||||
;;; Copyright © 2022 Marius Bakke <marius@gnu.org>
|
||||
;;;
|
||||
|
@ -346,6 +346,7 @@ (define-public automake
|
|||
(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
|
||||
|
|
Loading…
Reference in a new issue