fix configure args for darshan-runtime (#40873)
Problem: the current configure arguments are added lists to a list, and this needs to be adding strings to the same list. Solution: ensure we add each item (string) separately. Signed-off-by: vsoch <vsoch@users.noreply.github.com> Co-authored-by: vsoch <vsoch@users.noreply.github.com>
This commit is contained in:
parent
6301edbd5d
commit
f3ba20db26
1 changed files with 2 additions and 2 deletions
|
@ -115,9 +115,9 @@ def configure_args(self):
|
|||
if "+apmpi" in spec:
|
||||
extra_args.append("--enable-apmpi-mod")
|
||||
if "+apmpi_sync" in spec:
|
||||
extra_args.append(["--enable-apmpi-mod", "--enable-apmpi-coll-sync"])
|
||||
extra_args.extend(["--enable-apmpi-mod", "--enable-apmpi-coll-sync"])
|
||||
if "+apxc" in spec:
|
||||
extra_args.append(["--enable-apxc-mod"])
|
||||
extra_args.append("--enable-apxc-mod")
|
||||
|
||||
extra_args.append("--with-mem-align=8")
|
||||
extra_args.append("--with-log-path-by-env=DARSHAN_LOG_DIR_PATH")
|
||||
|
|
Loading…
Reference in a new issue