mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: kicad-library: Return #t from phases.
* gnu/packages/engineering.scm (kicad-library)[arguments]: Substitute INVOKE for SYSTEM*.
This commit is contained in:
parent
7d0370ede4
commit
6c08ea6a5c
1 changed files with 5 additions and 5 deletions
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue