From 21b76a1860dd3806f1cfcf41b3542005bb7fc246 Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Sat, 12 Dec 2015 16:51:35 +0100 Subject: [PATCH] example_designs/make.py: do not use "-" in build_name --- example_designs/make.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example_designs/make.py b/example_designs/make.py index f8be1d9..1266a38 100644 --- a/example_designs/make.py +++ b/example_designs/make.py @@ -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()