diff options
Diffstat (limited to 'backends.py')
-rw-r--r-- | backends.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/backends.py b/backends.py index 64d3860..748a742 100644 --- a/backends.py +++ b/backends.py @@ -201,7 +201,7 @@ class Backend(): def get_pch_include_args(self, compiler, target): args = [] pchpath = self.get_target_private_dir(target) - includeargs = compiler.get_include_args(pchpath) + includeargs = compiler.get_include_args(pchpath, False) for lang in ['c', 'cpp']: p = target.get_pch(lang) if len(p) == 0: @@ -238,7 +238,7 @@ class Backend(): if compiler.language == 'fortran': for lt in target.link_targets: priv_dir = os.path.join(self.get_target_dir(lt), lt.get_basename() + lt.type_suffix()) - incflag = compiler.get_include_args(priv_dir) + incflag = compiler.get_include_args(priv_dir, False) commands += incflag return commands |