diff options
author | Janneke Nieuwenhuizen <janneke@gnu.org> | 2024-11-08 12:42:13 +0100 |
---|---|---|
committer | Janneke Nieuwenhuizen <janneke@gnu.org> | 2024-12-03 08:39:00 +0100 |
commit | c86448f38b74b2da8f76ebbf3bdfaa43053bb3a8 (patch) | |
tree | d171546712210ad622527132904b7f831ad66034 /gnu | |
parent | 3d664f83013d4eeb6550d4a2c82ab9ccb66b13fc (diff) | |
download | guix-c86448f38b74b2da8f76ebbf3bdfaa43053bb3a8.tar.gz guix-c86448f38b74b2da8f76ebbf3bdfaa43053bb3a8.zip |
gnu: guile-fibers: Fix build for the 64bit Hurd.
* gnu/packages/guile-xyz.scm (guile-fibers)[arguments]: Also modify phases for
the 64bit Hurd.
Change-Id: I780f6a92418b49e5fe0d23eb1c90e155216f1428
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/guile-xyz.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm index a21289d368..bd5878d229 100644 --- a/gnu/packages/guile-xyz.scm +++ b/gnu/packages/guile-xyz.scm @@ -856,7 +856,7 @@ tables.") (list #:make-flags #~(list "GUILE_AUTO_COMPILE=0") #:phases - (if (target-x86-64?) + (if (and (target-x86-64?) (not (target-hurd?))) #~%standard-phases #~(modify-phases %standard-phases (add-before 'check 'disable-some-tests |