From 0e50d521c9724d6efbfb3081adf4e6f5fb3ba7a3 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Mon, 9 May 2016 15:51:38 +0200 Subject: 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(+) (limited to 'gnu/packages') 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" -- cgit v1.2.3 ojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/tests/git.scm
AgeCommit message (Expand)Author
2021-09-18import: Add 'generic-git' updater....* guix/git.scm (ls-remote-refs): New procedure. * tests/git.scm ("remote-refs" "remote-refs: only tags"): New tests. * guix/import/git.scm: New file. * doc/guix.texi (Invoking guix refresh): Document it. * tests/import-git.scm: New test file. * Makefile.am (MODULES, SCM_TESTS): Register the new files. Co-authored-by: Sarah Morgensen <iskarian@mgsn.dev> Signed-off-by: Ludovic Courtès <ludo@gnu.org> Xinglu Chen
2020-06-09git: 'commit-difference' really excludes the ancestors of #:excluded....* guix/git.scm (commit-difference): Initialize VISITED to the closure of OLD and EXCLUDED, as written in the docstring. * tests/git.scm ("commit-difference, excluded commits"): Adjust accordingly. Ludovic Courtès
2020-05-25git: Add 'commit-relation'....* guix/git.scm (commit-relation): New procedure. * tests/git.scm ("commit-relation"): New test. Ludovic Courtès