diff --git a/cmake/tmpl/create-legate-library.in b/cmake/tmpl/create-legate-library.in index 295355b89..1bece1a56 100644 --- a/cmake/tmpl/create-legate-library.in +++ b/cmake/tmpl/create-legate-library.in @@ -171,6 +171,7 @@ def generate_file(libname: str, template: str, path: Union[Path,str], executable text = template.replace("$target", libname) text = text.replace("@" "target" "@", libname) + text = text.replace("@" "py_import_path" "@", libname) with open(target_path, "w") as f: f.write(text)