diff options
author | Marius Bakke <mbakke@fastmail.com> | 2019-12-04 05:18:03 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2019-12-05 17:59:09 +0100 |
commit | a114b262d5c5b0e93791a4f4f19ec4459990d40b (patch) | |
tree | 56f366d1430ecd7d5f677fd080c81e16450c8eaa | |
parent | defcbeae46366f7e5d98ef0f5d6185a571cd6405 (diff) |
gnu: cairo: Do not build static libraries.
* gnu/packages/gtk.scm (cairo)[arguments]: Add "--disable-static" to #:configure-flags.
-rw-r--r-- | gnu/packages/gtk.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index 80a7e399b8..ea2b087724 100644 --- a/gnu/packages/gtk.scm +++ b/gnu/packages/gtk.scm @@ -145,7 +145,8 @@ tools have full access to view and control running applications.") ("python" ,python-wrapper))) (arguments `(#:tests? #f ; see http://lists.gnu.org/archive/html/bug-guix/2013-06/msg00085.html - #:configure-flags '("--enable-tee"))) ; needed for GNU Icecat + #:configure-flags '("--enable-tee" ;needed for GNU Icecat + "--disable-static"))) (synopsis "2D graphics library") (description "Cairo is a 2D graphics library with support for multiple output devices. |