summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorRodrigo Ceccato de Freitas <fopor@users.noreply.github.com>2021-10-08 04:28:37 -0300
committerGitHub <noreply@github.com>2021-10-08 09:28:37 +0200
commit169d0a56498673e5a458bd7c26e78bf1561dcde5 (patch)
tree426bc1f8db6e9d5ee49b11ea392d367c3c21d137 /var
parentf390289629938d33f4a3ea90ac76dff485802be2 (diff)
downloadspack-169d0a56498673e5a458bd7c26e78bf1561dcde5.tar.gz
spack-169d0a56498673e5a458bd7c26e78bf1561dcde5.tar.bz2
spack-169d0a56498673e5a458bd7c26e78bf1561dcde5.tar.xz
spack-169d0a56498673e5a458bd7c26e78bf1561dcde5.zip
cling: add missing CMake dependency (#26577)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/clingo/package.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/clingo/package.py b/var/spack/repos/builtin/packages/clingo/package.py
index aa9772109b..6832fd65cf 100644
--- a/var/spack/repos/builtin/packages/clingo/package.py
+++ b/var/spack/repos/builtin/packages/clingo/package.py
@@ -35,6 +35,8 @@ class Clingo(CMakePackage):
variant("docs", default=False, description="build documentation with Doxygen")
variant("python", default=True, description="build with python bindings")
+ depends_on('cmake@3.1:', type='build')
+
depends_on('doxygen', type="build", when="+docs")
depends_on('re2c@0.13:', type="build")
depends_on('bison@2.5:', type="build")