From 0e50d521c9724d6efbfb3081adf4e6f5fb3ba7a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Mon, 9 May 2016 15:51:38 +0200 Subject: [PATCH] gnu: bdb: Do not build static libraries. * gnu/packages/databases.scm (bdb)[arguments]: Pass --disable-static. --- gnu/packages/databases.scm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index ee28a4cf99..6676950a4d 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm @@ -113,6 +113,9 @@ and provides interfaces to the traditional file format.") (string-append "CONFIG_SHELL=" (which "bash")) (string-append "SHELL=" (which "bash")) + ;; Remove 7 MiB of .a files. + "--disable-static" + ;; The compatibility mode is needed by some packages, ;; notably iproute2. "--enable-compat185"