[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: emacs: Also skip integrity check for i686-li
From: |
guix-commits |
Subject: |
branch master updated: gnu: emacs: Also skip integrity check for i686-linux. |
Date: |
Sat, 30 Mar 2024 11:48:14 -0400 |
This is an automated email from the git hooks/post-receive script.
lilyp pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 0485e3a4a6 gnu: emacs: Also skip integrity check for i686-linux.
0485e3a4a6 is described below
commit 0485e3a4a6b33c5efe5367a04ba86f3563afd1e8
Author: Liliana Marie Prikler <liliana.prikler@gmail.com>
AuthorDate: Sat Mar 30 13:51:34 2024 +0100
gnu: emacs: Also skip integrity check for i686-linux.
The same cases fail as with armhf-linux.
* gnu/packages/emacs.scm (emacs-no-x)[#:phases]<validate-comp-integrity>:
Also skip check on i686-linux.
---
gnu/packages/emacs.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index a30e0b9b40..411bea3ab6 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -387,7 +387,7 @@ editor (console only)")
#$(cond
((%current-target-system)
#~(display "Cannot validate native-comp on cross
builds.\n"))
- ((string=? (%current-system) "armhf-linux")
+ ((member (%current-system) '("armhf-linux" "i686-linux"))
#~(display "Integrity test is broken on armhf.\n"))
(else
#~(invoke
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: emacs: Also skip integrity check for i686-linux.,
guix-commits <=