mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: libffcall: Do not build the static libraries.
* gnu/packages/libffcall.scm (libffcall)[arguments]: Add #:configure-flags.
This commit is contained in:
parent
d60458d77c
commit
ac906f14bc
1 changed files with 4 additions and 1 deletions
|
@ -2,6 +2,7 @@
|
|||
;;; Copyright © 2015 Joshua S. Grant <jgrant@parenthetical.io>
|
||||
;;; Copyright © 2015 Mark H Weaver <mhw@netris.org>
|
||||
;;; Copyright © 2017, 2018 Efraim Flashner <efraim@flashner.co.il>
|
||||
;;; Copyright © 2020 Marius Bakke <mbakke@fastmail.com>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -37,7 +38,9 @@ (define-public libffcall
|
|||
(base32
|
||||
"0iwcad6w78jp84vd6xaz5fwqm84n3cb42bdf5m5cj5xzpa5zp4d0"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments `(#:parallel-build? #f))
|
||||
(arguments
|
||||
'(#:parallel-build? #f
|
||||
#:configure-flags '("--disable-static")))
|
||||
(synopsis "Foreign function calls from interpreters")
|
||||
(description
|
||||
"GNU Libffcall is a collection of libraries that can be used to build
|
||||
|
|
Loading…
Reference in a new issue