diff options
author | Ludovic Courtès <ludo@gnu.org> | 2023-02-24 23:24:36 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2023-02-25 00:00:33 +0100 |
commit | b15658a60e83ab01df76825923c1404f53a840c2 (patch) | |
tree | 617d22c696487b9d279f0d493d927dc0304064a7 | |
parent | 1c13606a289b9ca97cf6aee2fddc14360b348ef3 (diff) | |
download | guix-b15658a60e83ab01df76825923c1404f53a840c2.tar.gz guix-b15658a60e83ab01df76825923c1404f53a840c2.zip |
gnu: guix-icons: Never cross-compile.
* gnu/packages/package-management.scm (guix-icons)[arguments]:
Add #:target #f.
-rw-r--r-- | gnu/packages/package-management.scm | 5 |
1 files changed, 5 insertions, 0 deletions
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 |