abinit: fix missing comma separating arguments (#41973)

This commit is contained in:
downloadico 2024-01-08 09:09:42 -07:00 committed by GitHub
parent e53ad2e85e
commit 091bfb7f2c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -164,7 +164,7 @@ def configure_args(self):
options.extend(
[
f"WANNIER90_CPPFLAGS=-I{spec['wannier90'].prefix.modules}",
f"WANNIER90_LIBS=-L{spec['wannier90'].prefix.lib}"
f"WANNIER90_LIBS=-L{spec['wannier90'].prefix.lib}",
"WANNIER90_LDFLAGS=-lwannier",
]
)