summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorSam Grayson <sam@samgrayson.me>2024-01-29 08:06:57 -0600
committerGitHub <noreply@github.com>2024-01-29 15:06:57 +0100
commit6dfc2e7075b537d922af53175e6b58897365418b (patch)
tree6c092af3ac2e4b310442b698444d314918409b57 /var
parent80e36d47c276eb7b74b3d2e842751d1a71e9f75e (diff)
downloadspack-6dfc2e7075b537d922af53175e6b58897365418b.tar.gz
spack-6dfc2e7075b537d922af53175e6b58897365418b.tar.bz2
spack-6dfc2e7075b537d922af53175e6b58897365418b.tar.xz
spack-6dfc2e7075b537d922af53175e6b58897365418b.zip
openldap: add findutils build dep (#42159)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/openldap/package.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/openldap/package.py b/var/spack/repos/builtin/packages/openldap/package.py
index b754e941f8..4fedf169db 100644
--- a/var/spack/repos/builtin/packages/openldap/package.py
+++ b/var/spack/repos/builtin/packages/openldap/package.py
@@ -61,6 +61,8 @@ class Openldap(AutotoolsPackage):
depends_on("groff", type="build")
depends_on("pkgconfig", type="build")
depends_on("wiredtiger", when="@2.6.0:")
+ depends_on("findutils", type="build")
+ # see https://github.com/openldap/openldap/blob/OPENLDAP_REL_ENG_2_4_48/libraries/liblunicode/Makefile.in
# Ref: https://www.linuxfromscratch.org/blfs/view/svn/server/openldap.html
@when("+client_only")