diff options
| -rw-r--r-- | build-aux/build-self.scm | 7 | 
1 files changed, 7 insertions, 0 deletions
| diff --git a/build-aux/build-self.scm b/build-aux/build-self.scm index 485f91b4c0..cc702490df 100644 --- a/build-aux/build-self.scm +++ b/build-aux/build-self.scm @@ -114,6 +114,13 @@ files."                         (string-append #$guile-ssh "/lib/guile/2.0/site-ccache")                         %load-compiled-path))) +        ;; XXX: The 'guile-ssh' package prior to Guix commit 92b7258 was +        ;; broken: libguile-ssh could not be found.  Work around that. +        ;; FIXME: We want Guile-SSH 0.10.2 or later anyway. +        #$(if (string-prefix? "0.9." (package-version guile-ssh)) +              #~(setenv "LTDL_LIBRARY_PATH" (string-append #$guile-ssh "/lib")) +              #t) +          (build-guix #$output #$source                      #:system #$%system | 
