Skip to content
Snippets Groups Projects
Commit 6c95a5d4 authored by Veronica G. Vergara Larrea's avatar Veronica G. Vergara Larrea
Browse files

the right flag here is +, the default behavior is controlled in the variant

parent 47195043
No related branches found
No related tags found
No related merge requests found
...@@ -119,7 +119,7 @@ def install(self, spec, prefix): ...@@ -119,7 +119,7 @@ def install(self, spec, prefix):
'--enable-mpi-thread-multiple' if '+thread_multiple' in spec else '--disable-mpi-thread-multiple', '--enable-mpi-thread-multiple' if '+thread_multiple' in spec else '--disable-mpi-thread-multiple',
'--with-pmi' if '+pmi' in spec else '--without-pmi', '--with-pmi' if '+pmi' in spec else '--without-pmi',
'--with-sqlite3' if '+sqlite3' in spec else '--without-sqlite3', '--with-sqlite3' if '+sqlite3' in spec else '--without-sqlite3',
'--disable-vt' if '-vt' in spec else '--enable-vt' '--enable-vt' if '+vt' in spec else '--disable-vt'
]) ])
# TODO: use variants for this, e.g. +lanl, +llnl, etc. # TODO: use variants for this, e.g. +lanl, +llnl, etc.
......
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