gnu: loksh: Use PREFIX.

* gnu/packages/shells.scm (loksh)[argumentss]: Substitute PREFIX for
DESTDIR #:make-flags.
This commit is contained in:
Tobias Geerinckx-Rice 2018-10-24 05:54:35 +02:00
parent c1144c78ad
commit f437e39aa2
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -586,14 +586,13 @@ (define-public loksh
(native-inputs
`(("pkg-config" ,pkg-config)))
(arguments
`(#:tests? #f ;No tests included
`(#:tests? #f ; no tests included
#:make-flags (list "CC=gcc" "HAVE_LIBBSD=1"
(string-append "DESTDIR="
(assoc-ref %outputs "out"))
"PREFIX=")
(string-append "PREFIX="
(assoc-ref %outputs "out")))
#:phases
(modify-phases %standard-phases
(delete 'configure)))) ;No configure script
(delete 'configure)))) ; no configure script
(home-page "https://github.com/dimkr/loksh")
(synopsis "Korn Shell from OpenBSD")
(description