mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: entr: Remove erroneous use of DESTDIR.
* gnu/packages/entr.scm (entr)[arguments]: Correctly set PREFIXes.
This commit is contained in:
parent
c4e48255d9
commit
6ad8fc65d4
1 changed files with 2 additions and 3 deletions
|
@ -51,9 +51,8 @@ (define-public entr
|
||||||
(let ((out (assoc-ref outputs "out")))
|
(let ((out (assoc-ref outputs "out")))
|
||||||
(setenv "CONFIG_SHELL" (which "bash"))
|
(setenv "CONFIG_SHELL" (which "bash"))
|
||||||
(setenv "CC" ,(cc-for-target))
|
(setenv "CC" ,(cc-for-target))
|
||||||
(setenv "DESTDIR" (string-append out "/"))
|
(setenv "PREFIX" out)
|
||||||
(setenv "PREFIX" "")
|
(setenv "MANPREFIX" (string-append out "/man"))
|
||||||
(setenv "MANPREFIX" "man")
|
|
||||||
(invoke "./configure"))))
|
(invoke "./configure"))))
|
||||||
(add-before 'build 'remove-fhs-file-names
|
(add-before 'build 'remove-fhs-file-names
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
|
|
Loading…
Reference in a new issue