guix-commits
[Top][All Lists]
Advanced

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

04/20: net-base: Don't cross-compile.


From: guix-commits
Subject: 04/20: net-base: Don't cross-compile.
Date: Mon, 12 Jul 2021 11:15:41 -0400 (EDT)

mothacehe pushed a commit to branch wip-meson
in repository guix.

commit 985d269b1ea864b26ed941397fc79e121cd64387
Author: Maxime Devos <maximedevos@telenet.be>
AuthorDate: Sun Jul 11 13:47:07 2021 +0200

    net-base: Don't cross-compile.
    
    net-base is pure data, so cross-compiling is pointless.
    
    * gnu/packages/admin.scm
      (net-base)[arguments]<#:target>: Set to #f.
      (net-base)[arguments]<#:allowed-references>: Disallow all
      references.
    
    Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
---
 gnu/packages/admin.scm | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index aab6233..8548452 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -937,6 +937,11 @@ to allow automatic login and starting any app.")
     (build-system trivial-build-system)
     (arguments
      `(#:modules ((guix build utils))
+       ;; This package consists solely of architecture-independent
+       ;; tables.  Cross-compilation is pointless. Make sure we'll
+       ;; always get the same derivation.
+       #:target #f
+       #:allowed-references ()
        #:builder (begin
                    (use-modules (guix build utils)
                                 (srfi srfi-26))



reply via email to

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