mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 22:26:40 -05:00
gnu: pcb-rnd: Use INVOKE.
* gnu/packages/engineering.scm (pcb-rnd)[arguments]: Use INVOKE.
This commit is contained in:
parent
5cb9754cf4
commit
a8416e6951
1 changed files with 4 additions and 4 deletions
|
@ -1,5 +1,5 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2015, 2016, 2017, 2018 Ricardo Wurmus <rekado@elephly.net>
|
;;; Copyright © 2015, 2016, 2017, 2018, 2019 Ricardo Wurmus <rekado@elephly.net>
|
||||||
;;; Copyright © 2015 Federico Beffa <beffa@fbengineering.ch>
|
;;; Copyright © 2015 Federico Beffa <beffa@fbengineering.ch>
|
||||||
;;; Copyright © 2016, 2018 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2016, 2018 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;; Copyright © 2016 David Thompson <davet@gnu.org>
|
;;; Copyright © 2016 David Thompson <davet@gnu.org>
|
||||||
|
@ -390,9 +390,9 @@ (define-public pcb-rnd
|
||||||
(replace 'configure
|
(replace 'configure
|
||||||
;; The configure script doesn't tolerate most of our configure flags.
|
;; The configure script doesn't tolerate most of our configure flags.
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(zero? (system* "sh" "configure"
|
(invoke "sh" "configure"
|
||||||
(string-append "--prefix="
|
(string-append "--prefix="
|
||||||
(assoc-ref outputs "out")))))))))
|
(assoc-ref outputs "out"))))))))
|
||||||
(home-page "http://repo.hu/projects/pcb-rnd/")
|
(home-page "http://repo.hu/projects/pcb-rnd/")
|
||||||
(description "PCB RND is a fork of the GNU PCB circuit board editing tool
|
(description "PCB RND is a fork of the GNU PCB circuit board editing tool
|
||||||
featuring various improvements and bug fixes.")))
|
featuring various improvements and bug fixes.")))
|
||||||
|
|
Loading…
Reference in a new issue