guix-commits
[Top][All Lists]
Advanced

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

06/09: gnu: odt2txt: Fix cross-compilation.


From: guix-commits
Subject: 06/09: gnu: odt2txt: Fix cross-compilation.
Date: Sat, 25 Nov 2023 08:48:25 -0500 (EST)

mothacehe pushed a commit to branch master
in repository guix.

commit b9d4c299893e28b4343cd2fef5f1d25b9d228396
Author: Zheng Junjie <zhengjunjie@iscas.ac.cn>
AuthorDate: Sat Nov 11 18:10:37 2023 +0800

    gnu: odt2txt: Fix cross-compilation.
    
    * gnu/packages/textutils.scm (odt2txt): Fix cross-compilation.
    [arguments]: Use Gexp and CC-FOR-TARGET.
    
    Change-Id: I0a81e601813da0e4b2accaf835e3ea774b742df8
    Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
---
 gnu/packages/textutils.scm | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/textutils.scm b/gnu/packages/textutils.scm
index 801d8fd8ad..ea182b1925 100644
--- a/gnu/packages/textutils.scm
+++ b/gnu/packages/textutils.scm
@@ -1130,13 +1130,13 @@ documents into plain text.")
           "0im3kzvhxkjlx57w6h13mc9584c74ma1dyymgvpq2y61av3gc35v"))))
     (build-system gnu-build-system)
     (arguments
-     `(#:tests? #f ; no make check
-       #:make-flags (list "CC=gcc"
-                          (string-append "DESTDIR=" (assoc-ref %outputs 
"out")))
-       #:phases
-       (modify-phases %standard-phases
-         ;; no configure script
-         (delete 'configure))))
+     (list #:tests? #f ; no make check
+           #:make-flags #~(list (string-append "CC=" #$(cc-for-target))
+                                (string-append "DESTDIR=" #$output))
+           #:phases
+           #~(modify-phases %standard-phases
+               ;; no configure script
+               (delete 'configure))))
     (inputs
      (list zlib))
     (home-page "https://github.com/dstosberg/odt2txt/";)



reply via email to

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