Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Spack
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
eic_tools
Spack
Commits
2251428f
Commit
2251428f
authored
8 years ago
by
Massimiliano Culpo
Browse files
Options
Downloads
Patches
Plain Diff
CMakePackage : changed `list()` to []
parent
5ce30711
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lib/spack/spack/package.py
+1
-4
1 addition, 4 deletions
lib/spack/spack/package.py
with
1 addition
and
4 deletions
lib/spack/spack/package.py
+
1
−
4
View file @
2251428f
...
...
@@ -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
+
\
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment