From fb4cf0d4d15af2132104a56fee25a883ada49585 Mon Sep 17 00:00:00 2001 From: mrg Date: Tue, 1 Dec 2020 09:52:23 -0800 Subject: [PATCH] Remove env variable from run_lvs script --- compiler/verify/calibre.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/compiler/verify/calibre.py b/compiler/verify/calibre.py index 5e49e6e1..a6376a16 100644 --- a/compiler/verify/calibre.py +++ b/compiler/verify/calibre.py @@ -127,8 +127,6 @@ def write_lvs_script(cell_name, gds_name, sp_name, final_verification=False, out run_file = output_path + "run_lvs.sh" f = open(run_file, "w") f.write("#!/bin/sh\n") - PDK_DIR=os.environ.get("PDK_DIR") - f.write("export PDK_DIR={}\n".format(PDK_DIR)) cmd = "{0} -gui -lvs {1}lvs_runset -batch".format(OPTS.lvs_exe[1], output_path) f.write(cmd)