mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-18 21:46:35 +01:00
gnu: emacs-libgit: Fix installation failure.
* gnu/packages/emacs-xyz.scm (emacs-libgit)[arguments]: Adjust for renamed source directory. While at it, removing trailing #t's.
This commit is contained in:
parent
2ae0c5d920
commit
fcf45f8d75
1 changed files with 3 additions and 5 deletions
|
@ -576,14 +576,12 @@ (define-public emacs-libgit
|
|||
(make-file-writable "libgit.el")
|
||||
(emacs-substitute-variables "libgit.el"
|
||||
("libgit--module-file"
|
||||
(string-append (emacs:elpa-directory out) "/libegit2.so")))
|
||||
#t)))
|
||||
(string-append (emacs:elpa-directory out) "/libegit2.so"))))))
|
||||
(add-before 'install 'prepare-for-install
|
||||
(lambda _
|
||||
(let ((s (string-append "../" ,name "-" ,version "-checkout")))
|
||||
(let ((s "../source"))
|
||||
(copy-file "libegit2.so" (string-append s "/libegit2.so"))
|
||||
(chdir s)
|
||||
#t)))
|
||||
(chdir s))))
|
||||
(replace 'install
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let ((install (assoc-ref emacs:%standard-phases 'install)))
|
||||
|
|
Loading…
Reference in a new issue