diff options
author | Marius Bakke <mbakke@fastmail.com> | 2019-12-04 04:49:29 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2019-12-05 17:59:05 +0100 |
commit | 101be25e7de2e291b0fcca3359713de0b6c7e4de (patch) | |
tree | 53e23e0f81d728be697fc1e2c2c86882da485ecf | |
parent | 56db9f6c605005c07c1861295cfedc6f2e6d0b57 (diff) |
gnu: libxext: Do not build static libraries.
* gnu/packages/xorg.scm (libxext)[arguments]: Add "--disable-static" in
#:configure-flags.
-rw-r--r-- | gnu/packages/xorg.scm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm index edc5716270..d0524c7182 100644 --- a/gnu/packages/xorg.scm +++ b/gnu/packages/xorg.scm @@ -4576,13 +4576,13 @@ cannot be adequately worked around on the client side of the wire.") (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 |