nwchem: fix non-fftw fftw-api providers (#37442)

This commit is contained in:
Carlos Bederián 2023-05-29 07:41:41 -03:00 committed by GitHub
parent e43d4cfee0
commit f345038317
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -100,7 +100,7 @@ def install(self, spec, prefix):
if "+fftw3" in spec:
args.extend(["USE_FFTW3=y"])
args.extend(["FFTW3_LIB=%s" % fftw.ld_flags])
args.extend(["LIBFFTW3=%s" % fftw.ld_flags])
args.extend(["FFTW3_INCLUDE={0}".format(spec["fftw-api"].prefix.include)])
with working_dir("src"):