example_designs/make.py: do not use "-" in build_name

This commit is contained in:
Florent Kermarrec 2015-12-12 16:51:35 +01:00
parent d0b4688184
commit 21b76a1860
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ if __name__ == "__main__":
platform_kwargs = dict((k, autotype(v)) for k, v in args.platform_option)
platform = platform_module.Platform(**platform_kwargs)
build_name = top_class.__name__.lower() + "-" + platform_name
build_name = top_class.__name__.lower() + "_" + platform_name
top_kwargs = dict((k, autotype(v)) for k, v in args.target_option)
soc = top_class(platform, **top_kwargs)
soc.finalize()