guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: xxd: Use cc-for-target.


From: guix-commits
Subject: branch master updated: gnu: xxd: Use cc-for-target.
Date: Fri, 18 Sep 2020 11:27:13 -0400

This is an automated email from the git hooks/post-receive script.

efraim pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 9ef590d  gnu: xxd: Use cc-for-target.
9ef590d is described below

commit 9ef590dc8a049adaffada12bc8a0b0dd0ee40c29
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Fri Sep 18 14:06:06 2020 +0300

    gnu: xxd: Use cc-for-target.
    
    * gnu/packages/vim.scm (xxd)[arguments]: Replace hard-coded gcc with
    cc-for-target in make-flags.
---
 gnu/packages/vim.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm
index 5814eb4..c6b1092 100644
--- a/gnu/packages/vim.scm
+++ b/gnu/packages/vim.scm
@@ -166,7 +166,7 @@ configuration files.")
   (package (inherit vim)
     (name "xxd")
     (arguments
-     `(#:make-flags '("CC=gcc")
+     `(#:make-flags (list ,(string-append "CC=" (cc-for-target)))
        #:tests? #f ; there are none
        #:phases
        (modify-phases %standard-phases



reply via email to

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