summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorTodd Gamblin <tgamblin@llnl.gov>2016-05-02 09:57:11 -0700
committerTodd Gamblin <tgamblin@llnl.gov>2016-05-02 09:57:11 -0700
commitaa7444cd3d0e6e58e308b00d4f8f7d93dd180eca (patch)
treea53842ca42ade9afba39aadc85961ae72e8a2a12 /var
parent4fecf33416ae3e8912664d9c6aa3220d25c65eea (diff)
parent11596ec0f847d75c051d97238ed74c8a19608ec7 (diff)
downloadspack-aa7444cd3d0e6e58e308b00d4f8f7d93dd180eca.tar.gz
spack-aa7444cd3d0e6e58e308b00d4f8f7d93dd180eca.tar.bz2
spack-aa7444cd3d0e6e58e308b00d4f8f7d93dd180eca.tar.xz
spack-aa7444cd3d0e6e58e308b00d4f8f7d93dd180eca.zip
Merge pull request #870 from jppelteret/bugfix/glm
Add missing dependency for glm
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/glm/package.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/glm/package.py b/var/spack/repos/builtin/packages/glm/package.py
index d00c301b4c..ecae89f1e8 100644
--- a/var/spack/repos/builtin/packages/glm/package.py
+++ b/var/spack/repos/builtin/packages/glm/package.py
@@ -11,6 +11,8 @@ class Glm(Package):
url = "https://github.com/g-truc/glm/archive/0.9.7.1.tar.gz"
version('0.9.7.1', '61af6639cdf652d1cdd7117190afced8')
+
+ depends_on ("cmake")
def install(self, spec, prefix):
with working_dir('spack-build', create=True):