deterministic dependency order

This commit is contained in:
Willem Melching 2019-12-03 12:06:52 -08:00
parent a265d3512c
commit ec3b459587
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ import os
from opendbc.can.process_dbc import process from opendbc.can.process_dbc import process
dbcs = [] dbcs = []
for x in os.listdir('../'): for x in sorted(os.listdir('../')):
if x.endswith(".dbc"): if x.endswith(".dbc"):
def compile_dbc(target, source, env): def compile_dbc(target, source, env):
process(source[0].path, target[0].path) process(source[0].path, target[0].path)