1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-07 05:30:38 +02:00

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

View File

@@ -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))