Convert the source file paths to a TCL friendly syntax in the synthesis makefile

parent 4bca545a
......@@ -124,7 +124,7 @@ SYN_GRADE := ${syn_grade}
file_list = []
for file_aux in self.fileset:
if isinstance(file_aux, filetype):
file_list.append(file_aux.rel_path())
file_list.append(path_mod.tclpath(file_aux.rel_path()))
if not file_list == []:
ret.append(
'SOURCES_{0} := \\\n'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment