me
/
guix
Archived
1
0
Fork 0

gnu: libcyaml: Clean up arguments.

* gnu/packages/serialization.scm (libcyaml)[arguments]:
Use #:test-target rather than a custom 'check phase.
Use CC-FOR-TARGET.
master
Tobias Geerinckx-Rice 2022-05-29 02:00:00 +02:00
parent f33fd4372a
commit 3d69f2dae8
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 4 additions and 7 deletions

View File

@ -367,16 +367,13 @@ that implements both the msgpack and msgpack-rpc specifications.")
(base32 "0gvf3h8r8300wdwfjgxw3nzlj7w14q63m67p8wdm5fvpha017n4y"))))
(build-system gnu-build-system)
(arguments
`(#:make-flags
`(#:test-target "test"
#:make-flags
(list (string-append "PREFIX=" (assoc-ref %outputs "out"))
(string-append "CC=gcc"))
(string-append "CC=" ,(cc-for-target)))
#:phases
(modify-phases %standard-phases
(delete 'configure) ; no configure script
(replace 'check
(lambda _
(setenv "CC" "gcc")
(invoke "make" "test"))))))
(delete 'configure)))) ; no configure script
(inputs
(list libyaml))
(native-inputs