guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: acl: Fix cross-compilation.


From: guix-commits
Subject: branch master updated: gnu: acl: Fix cross-compilation.
Date: Tue, 27 Oct 2020 07:02:41 -0400

This is an automated email from the git hooks/post-receive script.

mothacehe pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 559c134  gnu: acl: Fix cross-compilation.
559c134 is described below

commit 559c134b0ece171fcd39b31e5444b955deefcc8e
Author: Mathieu Othacehe <othacehe@gnu.org>
AuthorDate: Tue Oct 27 12:00:07 2020 +0100

    gnu: acl: Fix cross-compilation.
    
    This is a follow-up of 6693eac6eb9e13852f2b4156f1e9ebcd70ec43b6.
    
    * gnu/packages/acl.scm (acl): Disable tests when cross-compiling.
---
 gnu/packages/acl.scm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/acl.scm b/gnu/packages/acl.scm
index 4e90703..be4b079 100644
--- a/gnu/packages/acl.scm
+++ b/gnu/packages/acl.scm
@@ -51,7 +51,8 @@
      `(#:modules ((ice-9 ftw)
                   ,@%gnu-build-system-modules)
        #:configure-flags '("--disable-static")
-       #:tests? ,(not (hurd-target?))
+       #:tests? ,(not (or (%current-target-system)
+                          (hurd-target?)))
        #:phases
        (modify-phases %standard-phases
          ;; XXX After repacking the sources the timestamps are reset to the



reply via email to

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