diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-05-02 00:40:13 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-05-02 03:00:04 +0200 |
commit | 42658a67b7b94c2da4f136e4347463b64f352775 (patch) | |
tree | f077a6cc3ed4f7788f179811f9418b22156cb5f4 | |
parent | e3da51285acd0cb0d2d619cdea925ba5da0542b0 (diff) | |
download | guix-42658a67b7b94c2da4f136e4347463b64f352775.tar.gz |
gnu: libxdg-basedir: Omit static library.
* gnu/packages/freedesktop.scm (libxdg-basedir)[arguments]: Add ‘--disable-static’ to #:configure-flags.
-rw-r--r-- | gnu/packages/freedesktop.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/freedesktop.scm b/gnu/packages/freedesktop.scm index 8e74d20eae..c82ad230d7 100644 --- a/gnu/packages/freedesktop.scm +++ b/gnu/packages/freedesktop.scm @@ -536,7 +536,9 @@ other applications that need to directly deal with input devices.") "0j8fgp41kxipzdnqsdy83d7w6kadbc45n98qyr84zsj46wl582vv")))) (build-system gnu-build-system) (arguments - '(#:phases + '(#:configure-flags + (list "--disable-static") + #:phases (modify-phases %standard-phases (add-after 'unpack 'patch-autogen (lambda _ |