ntpoly: Define module directry when compiling with Fujitsu compiler. (#13120)

* ntpoly: Define module directry when compiling with Fujitsu compiler.

* Delete quotes.
This commit is contained in:
t-karatsu 2019-10-15 14:20:52 +09:00 committed by Adam J. Stewart
parent 5cd28847e8
commit 8f69c9d334

View File

@ -26,4 +26,7 @@ class Ntpoly(CMakePackage):
def cmake_args(self):
args = ["-DNOSWIG=Yes"]
if self.spec.satisfies('%fj'):
args.append('-DCMAKE_Fortran_MODDIR_FLAG=-M')
return args