Skip to content

Commit eec7509

Browse files
authored
Merge pull request #3079 from The-OpenROAD-Project-staging/env-ref
scripts/write_ref_sdc.tcl: $env(RESULTS_DIR) -> $::env(RESULTS_DIR)
2 parents b434ab0 + b06abc8 commit eec7509

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

flow/scripts/write_ref_sdc.tcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ if { [llength $clks] == 0 } {
2525
create_clock -name $clk_name -period $ref_period $sources
2626
# Undo the set_propagated_clock so SDC at beginning of flow uses ideal clocks.
2727
unset_propagated_clock [all_clocks]
28-
write_sdc -no_timestamp [file join $env(RESULTS_DIR) "updated_clks.sdc"]
28+
write_sdc -no_timestamp [file join $::env(RESULTS_DIR) "updated_clks.sdc"]
2929
# Reset
3030
create_clock -name $clk_name -period $period $sources
3131
set_propagated_clock [all_clocks]

0 commit comments

Comments
 (0)