diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2020-09-29 13:53:04 -0700 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2020-10-01 15:06:10 -0700 |
commit | ff51e1c5aa08e34324129ab0f7bdbf8a28a4f95f (patch) | |
tree | 05521e4607626c0d3c8ae0bfaabfe8ef163d1842 /mesonbuild/compilers/fortran.py | |
parent | 135f5d5838263e2afd344d916710071037ffcadc (diff) | |
download | meson-ff51e1c5aa08e34324129ab0f7bdbf8a28a4f95f.tar.gz |
compilers/clike: Store exe_wrapper as ExternalProgram
Which is what other languages do.
Diffstat (limited to 'mesonbuild/compilers/fortran.py')
-rw-r--r-- | mesonbuild/compilers/fortran.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/compilers/fortran.py b/mesonbuild/compilers/fortran.py index 6cbd2ce4e..1714fab6c 100644 --- a/mesonbuild/compilers/fortran.py +++ b/mesonbuild/compilers/fortran.py @@ -88,7 +88,7 @@ class FortranCompiler(CLikeCompiler, Compiler): if self.exe_wrapper is None: # Can't check if the binaries run so we have to assume they do return - cmdlist = self.exe_wrapper + [str(binary_name)] + cmdlist = self.exe_wrapper.get_command() + [str(binary_name)] else: cmdlist = [str(binary_name)] # %% Run the test executable |