Commit 9353ec30 authored by Pawel Szostek's avatar Pawel Szostek

fix annoying error msg when executing sim makefile

parent 64eb10da
......@@ -394,7 +394,7 @@ sim_post_cmd: sim
\t\t${sim_post_cmd}
modelsim.ini: ${modelsim_ini_path}
\t\tcp $$< .
\t\tcp $$< . 2>&1
clean:
\t\trm -rf ./modelsim.ini $$(LIBS)
.PHONY: clean sim_pre_cmd sim_post_cmd
......
......@@ -368,6 +368,6 @@ class XilinxsiminiReader(object):
xilinx_ini_path = str(os.path.join(global_mod.env["xilinx"],
"vhdl",
"hdp",
"lin" if global_mod.env["architecture"] is 32 else "lin64"))
"lin" if global_mod.env["architecture"] == 32 else "lin64"))
# Ensure the path is absolute and normalized
return os.path.abspath(xilinx_ini_path)
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