diff options
author | Kevin Brandstatter <kbrandst@hawk.iit.edu> | 2015-03-01 21:26:37 -0600 |
---|---|---|
committer | Kevin Brandstatter <kbrandst@hawk.iit.edu> | 2015-03-01 21:26:37 -0600 |
commit | 08f37d478f4b9018d99f6fcac9b82977ad6dc84d (patch) | |
tree | 709dc9fcb26cb8e6d83a20397654151d5d2d0ac7 /var | |
parent | 2f2eab0e157b7ebced80772d9bc81b205d69d620 (diff) | |
download | spack-08f37d478f4b9018d99f6fcac9b82977ad6dc84d.tar.gz spack-08f37d478f4b9018d99f6fcac9b82977ad6dc84d.tar.bz2 spack-08f37d478f4b9018d99f6fcac9b82977ad6dc84d.tar.xz spack-08f37d478f4b9018d99f6fcac9b82977ad6dc84d.zip |
Removed FIXME comments from atlas
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/packages/atlas/package.py | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/var/spack/packages/atlas/package.py b/var/spack/packages/atlas/package.py index 3fe42b750e..f9bf59343c 100644 --- a/var/spack/packages/atlas/package.py +++ b/var/spack/packages/atlas/package.py @@ -32,18 +32,11 @@ class Atlas(Package): version('3.10.2', 'a4e21f343dec8f22e7415e339f09f6da') - # FIXME: Add dependencies if this package requires them. - # depends_on("foo") - def install(self, spec, prefix): - #os.mkdir('ATLAS-Build') - #os.chdir('ATLAS-Build') with working_dir('ATLAS-Build', create=True): self.module.configure = Executable('../configure') - # FIXME: Modify the configure line to suit your build system here. configure("--prefix=%s" % prefix) - # FIXME: Add logic to build and install here make() make('check') make('ptcheck') |