Skip to content
Snippets Groups Projects
Commit b18b6bad authored by Adam J. Stewart's avatar Adam J. Stewart Committed by Todd Gamblin
Browse files

Remove intel-parallel-studio +all checks (#2905)

parent c24dc907
No related branches found
No related tags found
No related merge requests found
...@@ -127,20 +127,7 @@ def url_for_version(self, version): ...@@ -127,20 +127,7 @@ def url_for_version(self, version):
return url + ".tgz" 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): def install(self, spec, prefix):
self.check_variants(spec)
base_components = "ALL" # when in doubt, install everything base_components = "ALL" # when in doubt, install everything
mpi_components = "" mpi_components = ""
mkl_components = "" mkl_components = ""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment