mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-04 02:19:18 -05:00
gnu: libxext: Do not build static libraries.
* gnu/packages/xorg.scm (libxext)[arguments]: Add "--disable-static" in #:configure-flags.
This commit is contained in:
parent
56db9f6c60
commit
101be25e7d
1 changed files with 5 additions and 5 deletions
|
@ -4576,13 +4576,13 @@ (define-public libxext
|
|||
(base32
|
||||
"0azqxllcsfxc3ilhz6kwc6x7m8wc477p59ir9p0yrsldx766zbar"))))
|
||||
(build-system gnu-build-system)
|
||||
;; Disable zero malloc check that fails when cross-compiling.
|
||||
(arguments
|
||||
`(#:configure-flags
|
||||
(list
|
||||
,@(if (%current-target-system)
|
||||
'("--disable-malloc0returnsnull")
|
||||
'()))))
|
||||
(list "--disable-static"
|
||||
;; Disable zero malloc check that fails when cross-compiling.
|
||||
,@(if (%current-target-system)
|
||||
'("--disable-malloc0returnsnull")
|
||||
'()))))
|
||||
(propagated-inputs
|
||||
`(("xorgproto" ,xorgproto)))
|
||||
(inputs
|
||||
|
|
Loading…
Reference in a new issue