From 64b01354fb46dc8622705f07e97b5d1dc99966d9 Mon Sep 17 00:00:00 2001 From: Jussi Pakkanen Date: Mon, 4 Aug 2014 13:15:33 +0300 Subject: .f90 is Fortran too. --- environment.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/environment.py b/environment.py index 1292577be..640892e95 100644 --- a/environment.py +++ b/environment.py @@ -1195,7 +1195,7 @@ end program prog def can_compile(self, src): suffix = os.path.splitext(src)[1].lower() - if suffix == '.f' or suffix == '.f95': + if suffix == '.f' or suffix == '.f95' or suffix == '.f90': return True return False -- cgit v1.3