mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2026-04-06 21:20:33 +02:00
gnu: mono: Fix CFLAGS for mono@3.12.1.
* gnu/packages/dotnet.scm (mono-3.12.1)[arguments]<#:phases>{set-cflags}:
Add spaces in-between CFLAGS.
Change-Id: Ia15ed59bd9a69a97c3fe722ece862bcb065d2abf
Signed-off-by: Andreas Enge <andreas@enge.fr>
This commit is contained in:
@@ -809,11 +809,11 @@ a C-style programming language from Microsoft that is very similar to Java.")
|
||||
(replace 'set-cflags
|
||||
(lambda _
|
||||
(setenv "CFLAGS"
|
||||
(string-append "-O2 -g"
|
||||
"-Wno-error=implicit-function-declaration"
|
||||
"-Wno-error=incompatible-pointer-types"
|
||||
"-Wno-error=implicit-int"
|
||||
"-Wno-error=return-mismatch"
|
||||
(string-append "-O2 -g "
|
||||
"-Wno-error=implicit-function-declaration "
|
||||
"-Wno-error=incompatible-pointer-types "
|
||||
"-Wno-error=implicit-int "
|
||||
"-Wno-error=return-mismatch "
|
||||
"-Wno-error=int-conversion"))))
|
||||
(add-after 'unpack 'set-TZ
|
||||
(lambda _
|
||||
|
||||
Reference in New Issue
Block a user