diff options
author | Ludovic Courtès <ludo@gnu.org> | 2016-05-09 15:51:38 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2016-05-09 15:51:38 +0200 |
commit | 0e50d521c9724d6efbfb3081adf4e6f5fb3ba7a3 (patch) | |
tree | 01f193c0ba9a5b0183dec76e0b7aef4b5f75f1e7 /gnu | |
parent | ff1f39e3a02d0fd2c0ee279b9e8294e91bc132fd (diff) | |
download | guix-0e50d521c9724d6efbfb3081adf4e6f5fb3ba7a3.tar guix-0e50d521c9724d6efbfb3081adf4e6f5fb3ba7a3.tar.gz |
gnu: bdb: Do not build static libraries.
* gnu/packages/databases.scm (bdb)[arguments]: Pass --disable-static.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/databases.scm | 3 |
1 files changed, 3 insertions, 0 deletions
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" |