diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-05-15 02:00:02 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-05-22 02:00:00 +0200 |
commit | 52e17b9f3ff5d6d933179db0db6b4c8a80f2666d (patch) | |
tree | 7e5de7914459706e05a11753b351d5b320d00924 /gnu | |
parent | 4771e67c049043a0c894bd6ef2a59aedec0cc85c (diff) | |
download | guix-52e17b9f3ff5d6d933179db0db6b4c8a80f2666d.tar.gz guix-52e17b9f3ff5d6d933179db0db6b4c8a80f2666d.zip |
gnu: mailutils: Omit static library.
* gnu/packages/mail.scm (mailutils)[arguments]:
Add "--disable-static" to #:configure-flags.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/mail.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index 7094a9c081..0794fd921c 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -337,6 +337,7 @@ example, modify the message headers or body, or encrypt or sign the message.") (string-append "\"" (which "sh") "\"")))))) #:configure-flags #~(list "--sysconfdir=/etc" + "--disable-static" ;; Add "/X.Y" to the installation directory. (string-append "--with-guile-site-dir=" |