diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-04-01 07:39:32 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-05-31 04:54:52 +0200 |
commit | 946e5e8aa182cccdfeb43975db0b660bc83c2590 (patch) | |
tree | ed1228adb98eda64b22e49dc8c8f91d39a58c74b /gnu/packages/education.scm | |
parent | aa0771556e827b0f67a564082bedf8a573e8f73e (diff) | |
download | patches-946e5e8aa182cccdfeb43975db0b660bc83c2590.tar patches-946e5e8aa182cccdfeb43975db0b660bc83c2590.tar.gz |
gnu: tipp10: Use INVOKE.
* gnu/packages/education.scm (tipp10)[arguments]: Substitute INVOKE for
SYSTEM*.
Diffstat (limited to 'gnu/packages/education.scm')
-rw-r--r-- | gnu/packages/education.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/education.scm b/gnu/packages/education.scm index 72cd7c61ba..03050ffd0a 100644 --- a/gnu/packages/education.scm +++ b/gnu/packages/education.scm @@ -3,6 +3,7 @@ ;;; Copyright © 2016, 2017 Ricardo Wurmus <rekado@elephly.net> ;;; Copyright © 2016 Hartmut Goebel <h.goebel@crazy-compilers.com> ;;; Copyright © 2017, 2018 Efraim Flashner <efraim@flashner.co.il> +;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr> ;;; Copyright © 2018 Nicolas Goaziou <mail@nicolasgoaziou.fr> ;;; ;;; This file is part of GNU Guix. @@ -216,7 +217,7 @@ Currently available boards include: (substitute* "def/defines.h" (("\"/usr/") (string-append "\"" out "/"))) ;; Recreate Makefile - (zero? (system* "qmake")))))))) + (invoke "qmake"))))))) (inputs `(("qt4" ,qt-4) ("sqlite" ,sqlite))) |