diff options
author | Marius Bakke <mbakke@fastmail.com> | 2018-07-25 01:57:46 +0200 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2018-07-28 15:02:37 +0200 |
commit | b148506df74e48006194448a089eb16d4fcffc59 (patch) | |
tree | 0704666db96f9e5eb43b26912a4c55d9d115eee1 /gnu/packages/openldap.scm | |
parent | 1428bce348b1beff97676fce9350f6d87a2ca8a4 (diff) | |
download | patches-b148506df74e48006194448a089eb16d4fcffc59.tar patches-b148506df74e48006194448a089eb16d4fcffc59.tar.gz |
gnu: openldap: Don't build static libraries.
* gnu/packages/openldap.scm (openldap)[arguments]: Add "--disable-static" to
#:configure-flags. Remove phase 'provide-libtool'.
Diffstat (limited to 'gnu/packages/openldap.scm')
-rw-r--r-- | gnu/packages/openldap.scm | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gnu/packages/openldap.scm b/gnu/packages/openldap.scm index d952f412e2..ac81026e28 100644 --- a/gnu/packages/openldap.scm +++ b/gnu/packages/openldap.scm @@ -70,11 +70,9 @@ (native-inputs `(("libtool" ,libtool))) (arguments `(#:tests? #f + #:configure-flags '("--disable-static") #:phases (modify-phases %standard-phases - (add-after 'configure 'provide-libtool - (lambda _ (copy-file (which "libtool") "libtool") - #t)) (add-after 'install 'patch-sasl-path ;; Give -L arguments for cyrus-sasl to avoid propagation. (lambda* (#:key inputs outputs #:allow-other-keys) |