summaryrefslogtreecommitdiff
path: root/mesonbuild/compilers/fortran.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2017-12-18 19:38:45 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2017-12-18 21:19:18 +0200
commit8eaa0a27323e9fbee01b8aa0cf165cd499b78ee1 (patch)
treeacb0cfff72cc9f6f48ff30a662770ced5af97200 /mesonbuild/compilers/fortran.py
parentb1c25ccde0ef1d3838cb6c1d1f92ba1ccebdbff1 (diff)
downloadmeson-8eaa0a27323e9fbee01b8aa0cf165cd499b78ee1.tar.gz
Use -MD instead of -MMD for reliability.
Diffstat (limited to 'mesonbuild/compilers/fortran.py')
-rw-r--r--mesonbuild/compilers/fortran.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/compilers/fortran.py b/mesonbuild/compilers/fortran.py
index 2957a7c97..8deb8ea3d 100644
--- a/mesonbuild/compilers/fortran.py
+++ b/mesonbuild/compilers/fortran.py
@@ -99,7 +99,7 @@ end program prog
def get_dependency_gen_args(self, outtarget, outfile):
# Disabled until this is fixed:
# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=62162
- # return ['-cpp', '-MMD', '-MQ', outtarget]
+ # return ['-cpp', '-MD', '-MQ', outtarget]
return []
def get_output_args(self, target):