From f95ff3c694006dbf306e77ef4dee3f6ed2b1bfde Mon Sep 17 00:00:00 2001 From: Eren Dogan Date: Thu, 10 Nov 2022 21:50:31 -0800 Subject: [PATCH] Fix library path in globals.setup_paths() --- compiler/globals.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/globals.py b/compiler/globals.py index 4689c604..f8c114ed 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__ + "/compiler") + OPENRAM_HOME = os.path.dirname(openram.__file__) + "/compiler" # Add this directory to os.environ here os.environ["OPENRAM_HOME"] = OPENRAM_HOME