mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-28 14:15:42 -04:00
dependencies now sorted alphabetically in build script
This commit is contained in:
parent
466423c5f0
commit
2b8e57b42d
1 changed files with 1 additions and 1 deletions
|
|
@ -20,7 +20,7 @@ for src in glob.iglob('*.F90'):
|
|||
dependencies[module] = sorted(list(deps))
|
||||
|
||||
|
||||
for module in dependencies.keys():
|
||||
for module in sorted(dependencies.keys()):
|
||||
for dep in dependencies[module]:
|
||||
print("{0}.o: {1}.o".format(module, dep))
|
||||
print('')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue