From 845f5a03062e0facfd80d717ead2cf4a153fb562 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sat, 11 Jul 2020 19:53:29 +0200 Subject: gnu: hss: Patch less. * gnu/packages/ssh.scm (hss)[arguments]: Set INSTALL_BIN make flag instead of patching the Makefile. --- gnu/packages/ssh.scm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'gnu/packages/ssh.scm') diff --git a/gnu/packages/ssh.scm b/gnu/packages/ssh.scm index 67ea9dfa91..aaa552bfd6 100644 --- a/gnu/packages/ssh.scm +++ b/gnu/packages/ssh.scm @@ -88,15 +88,14 @@ `(("readline" ,readline))) (arguments `(#:make-flags - (list ,(string-append "CC=" (cc-for-target))) + (list ,(string-append "CC=" (cc-for-target)) + (string-append "INSTALL_BIN=" (assoc-ref %outputs "out") "/bin")) #:tests? #f ; no tests #:phases (modify-phases %standard-phases (add-after 'unpack 'patch-file-names (lambda* (#:key inputs outputs #:allow-other-keys) (substitute* "Makefile" - (("/usr/local/bin") - (string-append (assoc-ref outputs "out") "/bin")) (("/usr/local/opt/readline") (assoc-ref inputs "readline"))) #t)) -- cgit v1.2.3