Skip to content
Snippets Groups Projects
Commit 2251428f authored by Massimiliano Culpo's avatar Massimiliano Culpo
Browse files

CMakePackage : changed `list()` to []

parent 5ce30711
No related branches found
No related tags found
No related merge requests found
......@@ -1088,8 +1088,6 @@ def _prefix_write_lock(self):
finally:
self.prefix_lock.release_write()
install_phases = set(['configure', 'build', 'install', 'provenance'])
def do_install(self,
keep_prefix=False,
keep_stage=False,
......@@ -1171,7 +1169,6 @@ def do_install(self,
# Set parallelism before starting build.
self.make_jobs = make_jobs
# ------------------- BEGIN def build_process()
# Then install the package itself.
def build_process():
"""Forked for each build. Has its own process and python
......@@ -1778,7 +1775,7 @@ def wdir(self):
return join_path(self.stage.source_path, 'spack-build')
def cmake_args(self):
return list()
return []
def cmake(self, spec, prefix):
options = [self.root_cmakelists_dir()] + self.std_cmake_args + \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment