summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--QMTest/TestSCons.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/QMTest/TestSCons.py b/QMTest/TestSCons.py
index 0cf94b6..e14f8f4 100644
--- a/QMTest/TestSCons.py
+++ b/QMTest/TestSCons.py
@@ -110,9 +110,9 @@ def gccFortranLibs():
for l in stderr.readlines():
list = string.split(l)
if len(list) > 3 and list[:2] == ['gcc', 'version']:
- if list[2][:3] in ('4.1','4.2','4.3'):
- libs = ['gfortranbegin']
- break
+ if list[2][:3] in ('4.1','4.2','4.3'):
+ libs = ['gfortranbegin']
+ break
if list[2][:2] in ('3.', '4.'):
libs = ['frtbegin'] + libs
break