mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: emacs: Fix build with gcc-14.
* gnu/packages/emacs.scm (emacs-minimal)[arguments]: Add CFLAGS to #:configure-flags to relax gcc-14's strictness. Change-Id: I782c112c28841bf2b3b277cfda05bf2a1871b8a1
This commit is contained in:
parent
cf1939ad29
commit
0b2f0115ad
1 changed files with 6 additions and 1 deletions
|
@ -194,7 +194,12 @@
|
|||
(arguments
|
||||
(list
|
||||
#:modules (%emacs-modules build-system)
|
||||
#:configure-flags #~(list "--with-gnutls=no" "--disable-build-details")
|
||||
#:configure-flags #~(list
|
||||
#$(string-append
|
||||
"CFLAGS=-g -O2"
|
||||
" -Wno-error=incompatible-pointer-types")
|
||||
"--with-gnutls=no"
|
||||
"--disable-build-details")
|
||||
#:make-flags #~(list (string-append "SELECTOR=" #$%selector))
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue