Skip to content
Snippets Groups Projects
Unverified Commit 6ad8fc65 authored by Tobias Geerinckx-Rice's avatar Tobias Geerinckx-Rice
Browse files

gnu: entr: Remove erroneous use of DESTDIR.

* gnu/packages/entr.scm (entr)[arguments]: Correctly set PREFIXes.
parent c4e48255
No related branches found
No related tags found
No related merge requests found
......@@ -51,9 +51,8 @@ (define-public entr
(let ((out (assoc-ref outputs "out")))
(setenv "CONFIG_SHELL" (which "bash"))
(setenv "CC" ,(cc-for-target))
(setenv "DESTDIR" (string-append out "/"))
(setenv "PREFIX" "")
(setenv "MANPREFIX" "man")
(setenv "PREFIX" out)
(setenv "MANPREFIX" (string-append out "/man"))
(invoke "./configure"))))
(add-before 'build 'remove-fhs-file-names
(lambda* (#:key inputs #:allow-other-keys)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment