mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: cataclysm-dda: Fix build.
It fails with: cc1plus: note: unrecognized command-line option ‘-Wno-unknown-warning-option’ may have been intended to silence earlier diagnostics cc1plus: all warnings being treated as errors * gnu/packages/games.scm (cataclysm-dda)[arguments]: Disable warnings by pass "WARNINGS=-w" to make-flags. Change-Id: I01fbbab6a3ecefc63056a26547f9e833f6fe8321
This commit is contained in:
parent
14093b79fd
commit
d6ebfa7450
1 changed files with 1 additions and 1 deletions
|
@ -1091,7 +1091,7 @@ (define-public cataclysm-dda
|
|||
(list
|
||||
#:make-flags
|
||||
#~(list (string-append "PREFIX=" #$output)
|
||||
"USE_HOME_DIR=1" "DYNAMIC_LINKING=1" "RELEASE=1"
|
||||
"USE_HOME_DIR=1" "DYNAMIC_LINKING=1" "RELEASE=1" "WARNINGS=-w"
|
||||
"LOCALIZE=1" "LANGUAGES=all")
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
|
|
Loading…
Reference in a new issue