diff options
author | 宋文武 <iyzsong@member.fsf.org> | 2024-06-19 08:58:05 +0800 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:45:13 +0200 |
commit | d6ebfa7450c815eef91abd159de45241b991c53d (patch) | |
tree | 2adeb43cba78ce29d26b206514061213824b9e4b | |
parent | 14093b79fdd6f07dc123b4f501b61d627835ae39 (diff) |
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
-rw-r--r-- | gnu/packages/games.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 3b6f744a70b..c5947cc6ee7 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -1091,7 +1091,7 @@ high a score as possible.") (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 |