Fixed Fortran module naming scheme (unexpected upper instead of lower).

This commit is contained in:
Harald Klimach 2017-03-27 14:57:15 +02:00 committed by ita1024
parent 94fd866949
commit ede9ac0740
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ def modfile(conf, name):
Defaults to all lower case.
"""
return {'lower' :name.lower() + '.mod',
'lower.MOD' :name.upper() + '.MOD',
'lower.MOD' :name.lower() + '.MOD',
'UPPER.mod' :name.upper() + '.mod',
'UPPER' :name.upper() + '.MOD'}[conf.env.FC_MOD_CAPITALIZATION or 'lower']