Skip to content

Commit

Permalink
Fix bsc_build_vsim_iverilog to be posix compliant
Browse files Browse the repository at this point in the history
  • Loading branch information
Vekhir committed Jun 6, 2023
1 parent 8d451ca commit 8ecf1b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/exec/bsc_build_vsim_iverilog
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ fi

# create SFT for iverilog older than v11 (only v10 supported)
# v11 and later use the vpi files directly
if [[ "$(iverilog -V 2>&1 | head -n 1)" =~ "v10_" ]]; then
if [ "$(iverilog -V 2>&1 | head -n 1)" =~ "v10_" ]; then
CREATESFT="yes"
else
CREATESFT="no"
Expand Down

0 comments on commit 8ecf1b6

Please sign in to comment.