From 62700e4d2bdf75b4f41f4395036964e1441ca245 Mon Sep 17 00:00:00 2001 From: Eren Dogan Date: Fri, 4 Nov 2022 15:47:38 -0700 Subject: [PATCH] Fix OPENRAM_HOME path for library --- compiler/globals.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/globals.py b/compiler/globals.py index 8c780b49..b7b50796 100644 --- a/compiler/globals.py +++ b/compiler/globals.py @@ -440,7 +440,7 @@ def setup_paths(): "Source code at this path will be used as library.") except: import openram - OPENRAM_HOME = os.path.dirname(openram.__file__) + OPENRAM_HOME = os.path.dirname(openram.__file__ + "/compiler") # Add this directory to os.environ here os.environ["OPENRAM_HOME"] = OPENRAM_HOME