guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/02: Revert "gnu: openssh: Clean-up custom install phase."


From: guix-commits
Subject: 01/02: Revert "gnu: openssh: Clean-up custom install phase."
Date: Wed, 26 Jun 2019 18:21:30 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit 1ebb908d447fd7e641e800f970a0035ccd98deb7
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Thu Jun 27 00:20:50 2019 +0200

    Revert "gnu: openssh: Clean-up custom install phase."
    
    This reverts commit 7754136e464e02284624ad05c196d9ec26099143.
---
 gnu/packages/ssh.scm | 25 ++++++++++++++-----------
 1 file changed, 14 insertions(+), 11 deletions(-)

diff --git a/gnu/packages/ssh.scm b/gnu/packages/ssh.scm
index 2fd0247..4bb0ad5 100644
--- a/gnu/packages/ssh.scm
+++ b/gnu/packages/ssh.scm
@@ -220,17 +220,20 @@ a server that supports the SSH-2 protocol.")
            #t))
         (replace 'install
          (lambda* (#:key outputs (make-flags '()) #:allow-other-keys)
-           (let ((out (assoc-ref outputs "out")))
-             ;; install without host keys and system configuration files
-             (apply invoke "make" "install-nosysconf" make-flags)
-             (install-file "contrib/ssh-copy-id"
-                           (string-append out "/bin/"))
-             (chmod (string-append out "/bin/ssh-copy-id") #o555)
-             (install-file "contrib/ssh-copy-id.1"
-                           (string-append out "/share/man/man1/"))
-             ;; Don't install the PRIVSEP_PATH directory.
-             (delete-file-recursively (string-append out "/var"))
-             #t))))))
+           ;; install without host keys and system configuration files
+           (apply invoke "make" "install-nosysconf" make-flags)
+           (install-file "contrib/ssh-copy-id"
+                         (string-append (assoc-ref outputs "out")
+                                        "/bin/"))
+           (chmod (string-append (assoc-ref outputs "out")
+                                 "/bin/ssh-copy-id") #o555)
+           (install-file "contrib/ssh-copy-id.1"
+                         (string-append (assoc-ref outputs "out")
+                                        "/share/man/man1/"))
+           ;; Don't install the PRIVSEP_PATH directory.
+           (delete-file-recursively
+             (string-append (assoc-ref outputs "out") "/var"))
+           #t)))))
    (synopsis "Client and server for the secure shell (ssh) protocol")
    (description
     "The SSH2 protocol implemented in OpenSSH is standardised by the



reply via email to

[Prev in Thread] Current Thread [Next in Thread]