civodul pushed a commit to branch master
in repository guix.

commit b15658a60e83ab01df76825923c1404f53a840c2
Author: Ludovic Courtès <[email protected]>
AuthorDate: Fri Feb 24 23:24:36 2023 +0100

    gnu: guix-icons: Never cross-compile.
    
    * gnu/packages/package-management.scm (guix-icons)[arguments]:
    Add #:target #f.
---
 gnu/packages/package-management.scm | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/gnu/packages/package-management.scm 
b/gnu/packages/package-management.scm
index 3efcadb50d..c7d61f0070 100644
--- a/gnu/packages/package-management.scm
+++ b/gnu/packages/package-management.scm
@@ -627,6 +627,11 @@ overridden by setting the 'current-guix-package' 
parameter."
     (arguments
      `(#:modules ((guix build utils)
                   (gnu build svg))
+
+       ;; There's no point in cross-compiling: a native build gives the same
+       ;; result, independently of the system type.
+       #:target #f
+
        #:builder
        ,(with-extensions (list guile-rsvg guile-cairo)
           #~(begin

Reply via email to