diff options
Diffstat (limited to 'gnu/packages/ssh.scm')
-rw-r--r-- | gnu/packages/ssh.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/ssh.scm b/gnu/packages/ssh.scm index 876993e166..0d9bd5a119 100644 --- a/gnu/packages/ssh.scm +++ b/gnu/packages/ssh.scm @@ -254,7 +254,10 @@ Additionally, various channel-specific options can be negotiated.") (build-system gnu-build-system) (outputs '("out" "debug")) (arguments - '(#:phases (modify-phases %standard-phases + '(;; It makes no sense to build libguile-ssh.a. + #:configure-flags '("--disable-static") + + #:phases (modify-phases %standard-phases (add-after 'unpack 'autoreconf (lambda* (#:key inputs #:allow-other-keys) (invoke "autoreconf" "-vfi"))) |