gnu: hss: Patch less.

* gnu/packages/ssh.scm (hss)[arguments]: Set INSTALL_BIN make flag
instead of patching the Makefile.
This commit is contained in:
Tobias Geerinckx-Rice 2020-07-11 19:53:29 +02:00
parent 3b6b337eac
commit 845f5a0306
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -88,15 +88,14 @@ (define-public hss
`(("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))