From 7ef7c084cd54d098bbedef1ac554fb6ed67e7e10 Mon Sep 17 00:00:00 2001 From: Michael Timothy Grimes Date: Wed, 29 Aug 2018 16:01:25 -0700 Subject: [PATCH] fixed typo that added two '/' characters to path sys command (i.e. from tech//SCN3ME_SUBM.30 to tech/SCN3ME_SUBM.30) --- compiler/verify/magic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/verify/magic.py b/compiler/verify/magic.py index cf3508f4..98e345d4 100644 --- a/compiler/verify/magic.py +++ b/compiler/verify/magic.py @@ -34,7 +34,7 @@ def write_magic_script(cell_name, gds_name, extract=False): f = open(run_file, "w") f.write("#!/bin/sh\n") f.write("{} -dnull -noconsole << EOF\n".format(OPTS.drc_exe[1])) - f.write("path sys +{}/tech\n".format(OPTS.openram_tech)) + f.write("path sys +{}tech\n".format(OPTS.openram_tech)) f.write("tech load SCN3ME_SUBM.30\n") #gf.write("scalegrid 1 8\n") #f.write("gds rescale no\n")