diff options
author | Tobias Geerinckx-Rice <[email protected]> | 2018-04-01 07:39:32 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <[email protected]> | 2018-05-31 04:54:52 +0200 |
commit | 946e5e8aa182cccdfeb43975db0b660bc83c2590 (patch) | |
tree | ed1228adb98eda64b22e49dc8c8f91d39a58c74b | |
parent | aa0771556e827b0f67a564082bedf8a573e8f73e (diff) |
gnu: tipp10: Use INVOKE.
* gnu/packages/education.scm (tipp10)[arguments]: Substitute INVOKE for
SYSTEM*.
-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 <[email protected]> ;;; Copyright © 2016 Hartmut Goebel <[email protected]> ;;; Copyright © 2017, 2018 Efraim Flashner <[email protected]> +;;; Copyright © 2018 Tobias Geerinckx-Rice <[email protected]> ;;; Copyright © 2018 Nicolas Goaziou <[email protected]> ;;; ;;; 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))) |