aboutsummaryrefslogtreecommitdiff
path: root/backends.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2015-11-06 20:41:54 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2015-11-06 20:42:14 +0200
commit1b697f04cdb54730d1b488e0bbbf5d51d7c41ed7 (patch)
treee6cd4d0464751d45b131e41fe275323ee006b51b /backends.py
parent86c401e7b0e2ca6dfb28d857f756e1007117636d (diff)
downloadmeson-1b697f04cdb54730d1b488e0bbbf5d51d7c41ed7.zip
meson-1b697f04cdb54730d1b488e0bbbf5d51d7c41ed7.tar.gz
meson-1b697f04cdb54730d1b488e0bbbf5d51d7c41ed7.tar.bz2
Fixed run targets on VS2010.
Diffstat (limited to 'backends.py')
-rw-r--r--backends.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/backends.py b/backends.py
index 300f05d..e98cef4 100644
--- a/backends.py
+++ b/backends.py
@@ -226,7 +226,7 @@ class Backend():
if isinstance(target, build.Executable):
commands += dep.get_exe_args()
- # Fortran rquires extra include directives.
+ # Fortran requires extra include directives.
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())