chore: abc
This commit is contained in:
@@ -87,9 +87,8 @@ def main():
|
||||
subprocess.call(["./configure", "--with-compat", *args], cwd=source_dir)
|
||||
subprocess.call(["make", "modules"], cwd=source_dir)
|
||||
# Copy .so files to module path
|
||||
for module in config["modules"]:
|
||||
module_name = module["name"]
|
||||
so_file = f"{module_name}.so"
|
||||
for module in module_source_dirs:
|
||||
so_file = f"{module}.so"
|
||||
source_so_path = f"{source_dir}/objs/{so_file}"
|
||||
dest_so_path = f"{module_path}/{so_file}"
|
||||
print(f"Copying {source_so_path} to {dest_so_path}...")
|
||||
|
||||
Reference in New Issue
Block a user