diff options
Diffstat (limited to 'gnu/packages/ssh.scm')
| -rw-r--r-- | gnu/packages/ssh.scm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/packages/ssh.scm b/gnu/packages/ssh.scm index 4e26f1ee913..b2772185657 100644 --- a/gnu/packages/ssh.scm +++ b/gnu/packages/ssh.scm | |||
| @@ -276,7 +276,11 @@ a server that supports the SSH-2 protocol.") | |||
| 276 | ;; cross-compiled binaries because it invokes 'strip' instead of | 276 | ;; cross-compiled binaries because it invokes 'strip' instead of |
| 277 | ;; 'TRIPLET-strip'. Work around this. | 277 | ;; 'TRIPLET-strip'. Work around this. |
| 278 | (if #$(%current-target-system) | 278 | (if #$(%current-target-system) |
| 279 | (list "--disable-strip") | 279 | (append (list "--disable-strip") |
| 280 | (let ((xauth #$(this-package-input "xauth"))) | ||
| 281 | (if xauth | ||
| 282 | (list (string-append "--with-xauth=" xauth "/bin/xauth")) | ||
| 283 | '()))) | ||
| 280 | '())) | 284 | '())) |
| 281 | #:phases | 285 | #:phases |
| 282 | #~(modify-phases %standard-phases | 286 | #~(modify-phases %standard-phases |
