summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorTodd Gamblin <tgamblin@llnl.gov>2014-05-01 23:27:09 -0700
committerTodd Gamblin <tgamblin@llnl.gov>2014-05-01 23:27:09 -0700
commit703e61104317332d60bd0bde49652b8618cd0e6b (patch)
tree2a3e404a4b2404adb015380aeb0a85a69f23e317 /var
parent39d5a337ad081032d468493d489c4a59ec1690d8 (diff)
downloadspack-703e61104317332d60bd0bde49652b8618cd0e6b.tar.gz
spack-703e61104317332d60bd0bde49652b8618cd0e6b.tar.bz2
spack-703e61104317332d60bd0bde49652b8618cd0e6b.tar.xz
spack-703e61104317332d60bd0bde49652b8618cd0e6b.zip
Make mrnet depend on boost.
Diffstat (limited to 'var')
-rw-r--r--var/spack/packages/mrnet/package.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/var/spack/packages/mrnet/package.py b/var/spack/packages/mrnet/package.py
index 220af4efe8..7a0285606a 100644
--- a/var/spack/packages/mrnet/package.py
+++ b/var/spack/packages/mrnet/package.py
@@ -8,6 +8,8 @@ class Mrnet(Package):
versions = { '4.0.0' : 'd00301c078cba57ef68613be32ceea2f', }
parallel = False
+ depends_on("boost")
+
def install(self, spec, prefix):
configure("--prefix=%s" %prefix, "--enable-shared")
@@ -17,5 +19,7 @@ class Mrnet(Package):
# TODO: copy configuration header files to include directory
# this can be removed once we have STAT-2.1.0
import shutil
- shutil.copy2('%s/lib/mrnet-%s/include/mrnet_config.h' % (prefix, self.version), '%s/include/mrnet_config.h' % prefix)
- shutil.copy2('%s/lib/xplat-%s/include/xplat_config.h' % (prefix, self.version), '%s/include/xplat_config.h' % prefix)
+ shutil.copy2('%s/lib/mrnet-%s/include/mrnet_config.h' % (prefix, self.version),
+ '%s/include/mrnet_config.h' % prefix)
+ shutil.copy2('%s/lib/xplat-%s/include/xplat_config.h' % (prefix, self.version),
+ '%s/include/xplat_config.h' % prefix)