From caa28fa94b54244df49d9ec0542eb82b15518729 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=98yvind=20Harboe?= Date: Mon, 13 Jan 2025 19:38:41 +0100 Subject: [PATCH] final_report: consistency, export in make should not have quotes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit fixes scripting to match convention of no quotes in makefile export statements Signed-off-by: Øyvind Harboe --- flow/scripts/final_report.tcl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flow/scripts/final_report.tcl b/flow/scripts/final_report.tcl index 6900d915dd..879f74d975 100644 --- a/flow/scripts/final_report.tcl +++ b/flow/scripts/final_report.tcl @@ -39,7 +39,7 @@ if {[env_var_exists_and_non_empty RCX_RULES]} { # Static IR drop analysis if {[env_var_exists_and_non_empty PWR_NETS_VOLTAGES]} { - dict for {pwrNetName pwrNetVoltage} {*}$::env(PWR_NETS_VOLTAGES) { + dict for {pwrNetName pwrNetVoltage} $::env(PWR_NETS_VOLTAGES) { set_pdnsim_net_voltage -net ${pwrNetName} -voltage ${pwrNetVoltage} analyze_power_grid -net ${pwrNetName} \ -error_file $::env(REPORTS_DIR)/${pwrNetName}.rpt @@ -48,7 +48,7 @@ if {[env_var_exists_and_non_empty RCX_RULES]} { puts "IR drop analysis for power nets is skipped because PWR_NETS_VOLTAGES is undefined" } if {[env_var_exists_and_non_empty GND_NETS_VOLTAGES]} { - dict for {gndNetName gndNetVoltage} {*}$::env(GND_NETS_VOLTAGES) { + dict for {gndNetName gndNetVoltage} $::env(GND_NETS_VOLTAGES) { set_pdnsim_net_voltage -net ${gndNetName} -voltage ${gndNetVoltage} analyze_power_grid -net ${gndNetName} \ -error_file $::env(REPORTS_DIR)/${gndNetName}.rpt