mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 23:06:59 +01:00
gnu: hurd: Use -Wno-error=.
* gnu/packages/hurd.scm (hurd)[arguments]: Insert "error=" in WARNINGS. Change-Id: I13f071edfce2b66e8fb0ead85403052a09fb0411
This commit is contained in:
parent
800ea3de28
commit
6247645713
1 changed files with 7 additions and 6 deletions
|
@ -499,12 +499,13 @@ (define-public hurd
|
|||
"/bin/bash")
|
||||
(string-append "CC="
|
||||
,(cc-for-target))
|
||||
(string-append "WARNINGS="
|
||||
" -Wno-declaration-missing-parameter-type"
|
||||
" -Wno-implicit-function-declaration"
|
||||
" -Wno-implicit-int"
|
||||
" -Wno-int-conversion"
|
||||
" -Wno-strict-prototypes")
|
||||
(string-append
|
||||
"WARNINGS="
|
||||
" -Wno-error=declaration-missing-parameter-type"
|
||||
" -Wno-error=implicit-function-declaration"
|
||||
" -Wno-error=implicit-int"
|
||||
" -Wno-error=int-conversion"
|
||||
" -Wno-error=strict-prototypes")
|
||||
(string-append "ARCH=" arch)))))
|
||||
(add-after 'install 'install-goodies
|
||||
(lambda* (#:key inputs native-inputs outputs #:allow-other-keys)
|
||||
|
|
Loading…
Reference in a new issue