Escape quotations in the Quartus Makefile user properties

parent 71b60dde
......@@ -203,7 +203,7 @@ class ToolQuartus(ToolSyn):
for user_property in self.manifest_dict.get("syn_properties", []):
command_list.append(self._emit_property(self.SET_GLOBAL_ASSIGNMENT,
{'name_type': user_property[0],
'name': user_property[1]}))
'name': '\\"%s\\"' % user_property[1]}))
for inc in self.manifest_dict.get("include_dirs", []):
command_list.append(self._emit_property(self.SET_GLOBAL_ASSIGNMENT,
{'name_type': 'SEARCH_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