diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2022-10-11 07:33:33 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2022-10-11 07:35:04 +0300 |
commit | d104aca167067d706bcf2a7ef16cb8c8cc60d633 (patch) | |
tree | b654efec1cac1414bd4c2a2e03d0c2ea8be74eb7 /gnu/packages/mail.scm | |
parent | a01e7f09cb368c270c0cb90969f6c7a1308bb067 (diff) |
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.
Diffstat (limited to 'gnu/packages/mail.scm')
-rw-r--r-- | gnu/packages/mail.scm | 2 |
1 files changed, 1 insertions, 1 deletions
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) |