mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: emacs-ivy: Return #t from phases.
* gnu/packages/emacs.scm (emacs-ivy)[arguments]: Substitute INVOKE for SYSTEM* and return #t where otherwise undefined.
This commit is contained in:
parent
e76d959d6a
commit
e97ad01e4d
1 changed files with 3 additions and 3 deletions
|
@ -3650,9 +3650,9 @@ (define-public emacs-ivy
|
|||
(let* ((out (assoc-ref outputs "out"))
|
||||
(info (string-append out "/share/info")))
|
||||
(with-directory-excursion "doc"
|
||||
(unless (zero? (system* "makeinfo" "ivy.texi"))
|
||||
(error "makeinfo failed"))
|
||||
(install-file "ivy.info" info))))))))
|
||||
(invoke "makeinfo" "ivy.texi")
|
||||
(install-file "ivy.info" info)
|
||||
#t)))))))
|
||||
(propagated-inputs
|
||||
`(("emacs-hydra" ,emacs-hydra)))
|
||||
(native-inputs
|
||||
|
|
Loading…
Reference in a new issue