guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: public-inbox: Fix build on 32-bit systems.


From: guix-commits
Subject: branch master updated: gnu: public-inbox: Fix build on 32-bit systems.
Date: Tue, 11 Oct 2022 01:04:06 -0400

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

efraim pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new d104aca167 gnu: public-inbox: Fix build on 32-bit systems.
d104aca167 is described below

commit d104aca167067d706bcf2a7ef16cb8c8cc60d633
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Tue Oct 11 07:33:33 2022 +0300

    gnu: public-inbox: Fix build on 32-bit systems.
    
    * gnu/packages/mail.scm (public-inbox)[inputs]: Add perl-file-fcntllock
    on all 32-bit systems.
---
 gnu/packages/mail.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm
index 82126f5a3b..68af3bb353 100644
--- a/gnu/packages/mail.scm
+++ b/gnu/packages/mail.scm
@@ -4227,7 +4227,7 @@ Git and exports them in maildir format or to an MDA 
through a pipe.")
            lsof openssl tini))
     (inputs
      (append
-      (if (target-x86-32?)
+      (if (not (target-64bit?))
           ;; Required by test t/pop3d.t, otherwise fails with
           ;; “sizeof(off_t)=8 requires File::FcntlLock”.
           (list perl-file-fcntllock)



reply via email to

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