Skip to content
Snippets Groups Projects
Commit 1f17b470 authored by Daniel Newbrook's avatar Daniel Newbrook
Browse files

fix $ to $env conversion for tcl filelist

parent a3302e54
No related branches found
No related tags found
No related merge requests found
......@@ -113,7 +113,7 @@ def read_list(filelist, first, incdirs, args):
elif args.makefile == True:
compiled_filelist.append("VERILOG_SOURCES += " + str(line_list[1]).replace("$","$env")+"/"+str(file))
else:
compiled_filelist.append("read_verilog " + str(line_list[1])+"/"+str(file))
compiled_filelist.append("read_verilog " + str(env_var_substitute(line_list[1], tcl=True)).replace("$","$env")+"/"+str(file))
else:
compiled_filelist.append(line_list[1]+"/"+str(file))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment