gnu: kicad-library: Return #t from phases.

* gnu/packages/engineering.scm (kicad-library)[arguments]: Substitute
INVOKE for SYSTEM*.
This commit is contained in:
Tobias Geerinckx-Rice 2018-07-03 00:14:55 +02:00
parent 7d0370ede4
commit 6c08ea6a5c
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -717,11 +717,11 @@ (define-public kicad-library
(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.