mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
gnu: ghostscript: Make sure phases don't fail.
* gnu/packages/ghostscript.scm (ghostscript)[arguments]: Wrap 'system*' calls in (zero? ...).
This commit is contained in:
parent
3e462da5c1
commit
85345684d6
1 changed files with 4 additions and 2 deletions
|
@ -151,10 +151,12 @@ (define-public ghostscript
|
|||
(("/bin/sh") (which "bash"))))
|
||||
(alist-cons-after
|
||||
'build 'build-so
|
||||
(lambda _ (system* "make" "so"))
|
||||
(lambda _
|
||||
(zero? (system* "make" "so")))
|
||||
(alist-cons-after
|
||||
'install 'install-so
|
||||
(lambda _ (system* "make" "install-so"))
|
||||
(lambda _
|
||||
(zero? (system* "make" "install-so")))
|
||||
%standard-phases)))))
|
||||
(synopsis "PostScript and PDF interpreter")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue