summary refs log tree commit diff
path: root/etc
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2020-04-08 00:03:41 +0200
committerLudovic Courtès <ludo@gnu.org>2020-04-08 00:05:46 +0200
commit0eb799e6696202316b7e5062ba21bff9ece7a789 (patch)
tree131bd57b4f3059fe4bb0c68b4fc8aad3e55edc8b /etc
parenta05ad011229cf3712d373918c2ed9ebdb5f5b2a2 (diff)
downloadguix-0eb799e6696202316b7e5062ba21bff9ece7a789.tar.gz
maint: Cross-build GUILE-2.2/FIXED.
* etc/release-manifest.scm (%packages-to-cross-build): Replace
"guile@2.2" with GUILE-2.2/FIXED.
Diffstat (limited to 'etc')
-rw-r--r--etc/release-manifest.scm9
1 files changed, 5 insertions, 4 deletions
diff --git a/etc/release-manifest.scm b/etc/release-manifest.scm
index 97d2f05294..91471bd03b 100644
--- a/etc/release-manifest.scm
+++ b/etc/release-manifest.scm
@@ -64,10 +64,11 @@ TARGET."
   ;; Packages that must be cross-buildable from x86_64-linux.
   ;; FIXME: Add (@ (gnu packages gcc) gcc) when <https://bugs.gnu.org/40463>
   ;; is fixed.
-  (map specification->package
-       '("coreutils" "grep" "sed" "findutils" "diffutils" "patch"
-         "gawk" "gettext" "gzip" "xz"
-         "hello" "guile@2.2" "zlib")))
+  (append (list (@ (gnu packages guile) guile-2.2/fixed))
+          (map specification->package
+               '("coreutils" "grep" "sed" "findutils" "diffutils" "patch"
+                 "gawk" "gettext" "gzip" "xz"
+                 "hello" "zlib"))))
 
 (define %packages-to-cross-build-for-mingw
   ;; Many things don't build for MinGW.  Restrict to what's known to work.