diff options
author | Ludovic Courtès <ludo@gnu.org> | 2017-05-21 11:56:29 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2017-05-21 11:56:29 +0200 |
commit | 9d0c24d1be393d14bddd031e910b1d0e51156f58 (patch) | |
tree | 5cc8a65eb41a54bc6e526a8398fdaf41df493246 /gnu/tests/ssh.scm | |
parent | 8a29dc07a4b62ee480490137592cf02c33b1799f (diff) | |
download | patches-9d0c24d1be393d14bddd031e910b1d0e51156f58.tar patches-9d0c24d1be393d14bddd031e910b1d0e51156f58.tar.gz |
tests: ssh: Use 'guile2.0-ssh'.
Fixes a regression introduced in 4d8806c3d662c74e6d48d0f0d6ce423fce9a3a08.
* gnu/tests/ssh.scm (run-ssh-test): Use GUILE2.0-SSH instead of GUILE-SSH.
Diffstat (limited to 'gnu/tests/ssh.scm')
-rw-r--r-- | gnu/tests/ssh.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/tests/ssh.scm b/gnu/tests/ssh.scm index 02931e982a..5f06151081 100644 --- a/gnu/tests/ssh.scm +++ b/gnu/tests/ssh.scm @@ -51,7 +51,7 @@ When SFTP? is true, run an SFTP server test." (eval-when (expand load eval) ;; Prepare to use Guile-SSH. (set! %load-path - (cons (string-append #$guile-ssh "/share/guile/site/" + (cons (string-append #+guile2.0-ssh "/share/guile/site/" (effective-version)) %load-path))) |