mhw pushed a commit to branch core-updates
in repository guix.
commit 6c23ed9b58e57edaadb0168610e760a0062a6c19
Author: Mark H Weaver <[email protected]>
Date: Fri Mar 23 04:14:33 2018 -0400
gnu: texmaker: Use invoke.
* gnu/packages/tex.scm (texmaker)[arguments]: Use invoke in the custom
configure phase.
---
gnu/packages/tex.scm | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 0112f88..8279e9c 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -4204,12 +4204,12 @@ PDF documents.")
(replace 'configure
(lambda* (#:key outputs #:allow-other-keys)
(let ((out (assoc-ref outputs "out")))
- (zero? (system* "qmake"
- (string-append "PREFIX=" out)
- (string-append "DESKTOPDIR=" out
- "/share/applications")
- (string-append "ICONDIR=" out "/share/pixmaps")
- "texmaker.pro"))))))))
+ (invoke "qmake"
+ (string-append "PREFIX=" out)
+ (string-append "DESKTOPDIR=" out
+ "/share/applications")
+ (string-append "ICONDIR=" out "/share/pixmaps")
+ "texmaker.pro")))))))
(inputs
`(("poppler-qt5" ,poppler-qt5)
("qtbase" ,qtbase)