guix-commits
[Top][All Lists]
Advanced

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

06/22: net-base: Don't cross-compile.


From: guix-commits
Subject: 06/22: net-base: Don't cross-compile.
Date: Wed, 14 Jul 2021 13:20:48 -0400 (EDT)

mothacehe pushed a commit to branch core-updates
in repository guix.

commit f6e4fbad2dbecdaf75876b0fbf937880dd79465f
Author: Maxime Devos <maximedevos@telenet.be>
AuthorDate: Wed Jul 14 13:12:51 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..394575f 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]