mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00: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:
parent
d24625aeb4
commit
2987b63d8f
1 changed files with 5 additions and 5 deletions
|
@ -809,11 +809,11 @@ a C-style programming language from Microsoft that is very similar to Java.")
|
||||||
(replace 'set-cflags
|
(replace 'set-cflags
|
||||||
(lambda _
|
(lambda _
|
||||||
(setenv "CFLAGS"
|
(setenv "CFLAGS"
|
||||||
(string-append "-O2 -g"
|
(string-append "-O2 -g "
|
||||||
"-Wno-error=implicit-function-declaration"
|
"-Wno-error=implicit-function-declaration "
|
||||||
"-Wno-error=incompatible-pointer-types"
|
"-Wno-error=incompatible-pointer-types "
|
||||||
"-Wno-error=implicit-int"
|
"-Wno-error=implicit-int "
|
||||||
"-Wno-error=return-mismatch"
|
"-Wno-error=return-mismatch "
|
||||||
"-Wno-error=int-conversion"))))
|
"-Wno-error=int-conversion"))))
|
||||||
(add-after 'unpack 'set-TZ
|
(add-after 'unpack 'set-TZ
|
||||||
(lambda _
|
(lambda _
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue