summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam J. Stewart <ajstewart426@gmail.com>2017-01-25 22:41:09 -0600
committerTodd Gamblin <tgamblin@llnl.gov>2017-01-25 21:41:09 -0700
commitb18b6bad6f35ffa67ed7f293901b4918d53dd3d4 (patch)
tree3666358bfce4975d25ee69d5c0285ae4eba5d9ba
parentc24dc9072e1e8bddc3dbda09f1b98b51d91fc644 (diff)
downloadspack-b18b6bad6f35ffa67ed7f293901b4918d53dd3d4.tar.gz
spack-b18b6bad6f35ffa67ed7f293901b4918d53dd3d4.tar.bz2
spack-b18b6bad6f35ffa67ed7f293901b4918d53dd3d4.tar.xz
spack-b18b6bad6f35ffa67ed7f293901b4918d53dd3d4.zip
Remove intel-parallel-studio +all checks (#2905)
-rw-r--r--var/spack/repos/builtin/packages/intel-parallel-studio/package.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/var/spack/repos/builtin/packages/intel-parallel-studio/package.py b/var/spack/repos/builtin/packages/intel-parallel-studio/package.py
index 8564eeb941..941ef9befb 100644
--- a/var/spack/repos/builtin/packages/intel-parallel-studio/package.py
+++ b/var/spack/repos/builtin/packages/intel-parallel-studio/package.py
@@ -127,20 +127,7 @@ class IntelParallelStudio(IntelInstaller):
return url + ".tgz"
- def check_variants(self, spec):
- error_message = '\t{variant} can not be turned off if "+all" is set'
-
- if self.spec.satisfies('+all'):
- errors = [error_message.format(variant=x)
- for x in ('mpi', 'mkl', 'daal', 'ipp', 'tools')
- if ('~' + x) in self.spec]
- if errors:
- errors = ['incompatible variants given'] + errors
- raise InstallError('\n'.join(errors))
-
def install(self, spec, prefix):
- self.check_variants(spec)
-
base_components = "ALL" # when in doubt, install everything
mpi_components = ""
mkl_components = ""