Skip to content

Commit

Permalink
cfgparse: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
saursin committed Dec 18, 2023
1 parent d25af6e commit 1ba052a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/cfgparse.py
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ def get_vflags(self, tool='verilator') -> list:
txt = list2str(cfgp.get_verilog_srcs(), args.one_per_line)

if args.defines:
txt = list2str(cfgp.get_verilog_defines(), args.one_per_line)
txt = list2str(prefixlist(cfgp.get_verilog_defines(), '-D'), args.one_per_line)

if args.vflags:
txt = list2str(cfgp.get_vflags('verilator' if args.tool == 'generic' else args.tool))
Expand Down

0 comments on commit 1ba052a

Please sign in to comment.