summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Boeckel <ben.boeckel@kitware.com>2016-06-29 15:05:57 -0400
committerBen Boeckel <ben.boeckel@kitware.com>2016-07-14 16:21:47 -0400
commitd71a12438b527e76aa710cff0eb2b032160343cd (patch)
treec49c3a6c2b04eec9bfca81f5c50b5be11aeb3481
parent39aef5fc00eb935595235a53ca3568c3e063c371 (diff)
downloadspack-d71a12438b527e76aa710cff0eb2b032160343cd.tar.gz
spack-d71a12438b527e76aa710cff0eb2b032160343cd.tar.bz2
spack-d71a12438b527e76aa710cff0eb2b032160343cd.tar.xz
spack-d71a12438b527e76aa710cff0eb2b032160343cd.zip
cantera: use nolink for python module dependencies
Unsure about this, but this is probably true.
-rw-r--r--var/spack/repos/builtin/packages/cantera/package.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/var/spack/repos/builtin/packages/cantera/package.py b/var/spack/repos/builtin/packages/cantera/package.py
index 646d106d88..8e4f23046b 100644
--- a/var/spack/repos/builtin/packages/cantera/package.py
+++ b/var/spack/repos/builtin/packages/cantera/package.py
@@ -52,10 +52,10 @@ class Cantera(Package):
# Python module dependencies
extends('python', when='+python')
- depends_on('py-numpy', when='+python')
- depends_on('py-scipy', when='+python')
- depends_on('py-cython', when='+python')
- depends_on('py-3to2', when='+python')
+ depends_on('py-numpy', when='+python', type=nolink)
+ depends_on('py-scipy', when='+python', type=nolink)
+ depends_on('py-cython', when='+python', type=nolink)
+ depends_on('py-3to2', when='+python', type=nolink)
# TODO: these "when" specs don't actually work
# depends_on('py-unittest2', when='+python^python@2.6')
# depends_on('py-unittest2py3k', when='+python^python@3.1')