guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

05/05: gnu: libcyaml: Clean up arguments.


From: guix-commits
Subject: 05/05: gnu: libcyaml: Clean up arguments.
Date: Thu, 2 Jun 2022 20:58:27 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit 3d69f2dae8c5d451e03d3569c8b153fd573054b8
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Sun May 29 02:00:00 2022 +0200

    gnu: libcyaml: Clean up arguments.
    
    * gnu/packages/serialization.scm (libcyaml)[arguments]:
    Use #:test-target rather than a custom 'check phase.
    Use CC-FOR-TARGET.
---
 gnu/packages/serialization.scm | 11 ++++-------
 1 file changed, 4 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/serialization.scm b/gnu/packages/serialization.scm
index 8b5b06484a..cec9b68299 100644
--- a/gnu/packages/serialization.scm
+++ b/gnu/packages/serialization.scm
@@ -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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]