[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/07: build: Fix detection of guile-ssh.
From: |
guix-commits |
Subject: |
01/07: build: Fix detection of guile-ssh. |
Date: |
Thu, 12 Dec 2024 17:31:27 -0500 (EST) |
civodul pushed a commit to branch master
in repository guix.
commit b8a45bd0473ab2ba9b96b7ef429a557ece9bf06c
Author: Tomas Volf <~@wolfsden.cz>
AuthorDate: Wed Dec 11 23:09:57 2024 +0100
build: Fix detection of guile-ssh.
Fixes <https://issues.guix.gnu.org/74800>.
The check for make-session stopped working after update to 0.18.0. This
commit adds the additional `#:config #f' to skip reading the ssh
configuration, arguably we did not want to do that anyway.
* m4/guix.m4 (GUIX_CHECK_GUILE_SSH): Add `#:config #f' to make-session call.
Change-Id: Id6ea3860292159ac2e6cf2a77df5f720f66aa071
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Reported-by: Dariqq <dariqq@posteo.net>
---
m4/guix.m4 | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/m4/guix.m4 b/m4/guix.m4
index 8c2757a8b7..376f40943c 100644
--- a/m4/guix.m4
+++ b/m4/guix.m4
@@ -143,7 +143,7 @@ AC_DEFUN([GUIX_CHECK_GUILE_SSH], [
(@ (ssh popen) open-remote-pipe)
(@ (ssh dist node) node-eval)
(@ (ssh auth) userauth-gssapi!)
- ((@ (ssh session) make-session) #:nodelay #t))])
+ ((@ (ssh session) make-session) #:nodelay #t #:config #f))])
if test "$retval" = 0; then
guix_cv_have_recent_guile_ssh="yes"
else
- branch master updated (a9003b8e6b -> 98aca7a2b6), guix-commits, 2024/12/12
- 02/07: etc: Move manifests to a separate directory., guix-commits, 2024/12/12
- 06/07: maint: Add ungrafting manifest., guix-commits, 2024/12/12
- 03/07: packages: Optimize ‘all-packages’., guix-commits, 2024/12/12
- 04/07: build-system/cargo: Simplify ‘crate-closure’., guix-commits, 2024/12/12
- 05/07: guix build: Last argument of ‘dependents’ is optional., guix-commits, 2024/12/12
- 01/07: build: Fix detection of guile-ssh.,
guix-commits <=
- 07/07: etc: upgrade: Attempt to upgrade the latest libgit2, not the default one., guix-commits, 2024/12/12