From 6c08ea6a5cccc8685c347217ee6f5c567d8db1e7 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 3 Jul 2018 00:14:55 +0200 Subject: [PATCH] gnu: kicad-library: Return #t from phases. * gnu/packages/engineering.scm (kicad-library)[arguments]: Substitute INVOKE for SYSTEM*. --- gnu/packages/engineering.scm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm index 8578789872..3bb49ff549 100644 --- a/gnu/packages/engineering.scm +++ b/gnu/packages/engineering.scm @@ -717,11 +717,11 @@ electrical diagrams), gerbview (viewing Gerber files) and others.") (modify-phases %standard-phases (add-after 'install 'install-footprints ; from footprints tarball (lambda* (#:key inputs outputs #:allow-other-keys) - (zero? (system* "tar" "xvf" - (assoc-ref inputs "kicad-footprints") - "-C" (string-append (assoc-ref outputs "out") - "/share/kicad/modules") - "--strip-components=1")))) + (invoke "tar" "xvf" + (assoc-ref inputs "kicad-footprints") + "-C" (string-append (assoc-ref outputs "out") + "/share/kicad/modules") + "--strip-components=1"))) ;; We change the default global footprint file, which is generated if ;; it doesn't exist in user's home directory, from the one using the ;; github plugin, to the one using the KISYSMOD environment path.