From 6c23ed9b58e57edaadb0168610e760a0062a6c19 Mon Sep 17 00:00:00 2001 From: Mark H Weaver Date: Fri, 23 Mar 2018 04:14:33 -0400 Subject: 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(-) (limited to 'gnu') diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 0112f88478..8279e9ce32 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -4204,12 +4204,12 @@ (define-public texmaker (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) -- cgit v1.2.3