diff options
author | Gregory Becker <becker33@llnl.gov> | 2016-03-23 09:54:57 -0700 |
---|---|---|
committer | Gregory Becker <becker33@llnl.gov> | 2016-03-23 09:54:57 -0700 |
commit | 688eca23ff4488a4cd90125b69d46cb69271a5cd (patch) | |
tree | b772ae1512db5ddefbf8d2875ba2c45d37419062 | |
parent | 7c729d4c3c09848c6632795a752e8fecbc2e1efe (diff) | |
download | spack-688eca23ff4488a4cd90125b69d46cb69271a5cd.tar.gz spack-688eca23ff4488a4cd90125b69d46cb69271a5cd.tar.bz2 spack-688eca23ff4488a4cd90125b69d46cb69271a5cd.tar.xz spack-688eca23ff4488a4cd90125b69d46cb69271a5cd.zip |
cleanup
-rw-r--r-- | lib/spack/spack/spec.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/spack/spack/spec.py b/lib/spack/spack/spec.py index 4d2c61c0c4..d800a1667d 100644 --- a/lib/spack/spack/spec.py +++ b/lib/spack/spack/spec.py @@ -110,7 +110,7 @@ import spack import spack.architecture import spack.parse import spack.error -import spack.compilers as compilers +#import spack.compilers as compilers from spack.version import * from spack.util.naming import mod_to_class @@ -1174,9 +1174,9 @@ class Spec(object): spack.repo.get(spec.fullname) # validate compiler in addition to the package name. - if spec.compiler: - if not compilers.supported(spec.compiler): - raise UnsupportedCompilerError(spec.compiler.name) +# if spec.compiler: +# if not compilers.supported(spec.compiler): +# raise UnsupportedCompilerError(spec.compiler.name) # Ensure that variants all exist. for vname, variant in spec.variants.items(): |