From eb2304944b47fd256757ffe7498f2ae2bece25de Mon Sep 17 00:00:00 2001 From: Matt Guthaus Date: Fri, 5 Oct 2018 08:48:25 -0700 Subject: [PATCH] Fix .magicrc file name --- compiler/verify/magic.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/verify/magic.py b/compiler/verify/magic.py index e2182340..3d48cf7b 100644 --- a/compiler/verify/magic.py +++ b/compiler/verify/magic.py @@ -72,7 +72,7 @@ def write_netgen_script(cell_name, sp_name): global OPTS - setup_file = OPTS.openram_tech + "/mag_lib/setup.tcl" + setup_file = OPTS.openram_tech + "mag_lib/setup.tcl" if os.path.exists(setup_file): # Copy setup.tcl file into temp dir shutil.copy(setup_file, OPTS.openram_temp) @@ -105,7 +105,7 @@ def run_drc(cell_name, gds_name, extract=False): num_drc_runs += 1 # Copy .magicrc file into temp dir - magic_file = OPTS.openram_tech + "/mag_lib/setup.tcl" + magic_file = OPTS.openram_tech + "mag_lib/.magicrc" if os.path.exists(magic_file): shutil.copy(magic_file, OPTS.openram_temp) else: