Skip to content

Commit

Permalink
Fix list vs tuple
Browse files Browse the repository at this point in the history
  • Loading branch information
romainthomas committed Oct 1, 2023
1 parent 9de43ed commit dd95b2f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -429,11 +429,11 @@ def build_extension(self, ext):
}

# 1. Configure
configure_cmd = (
configure_cmd = [
cmake_bin,
"-S", LIEF_DIR.as_posix(),
"-B", cmake_output.as_posix(),
) + cmake_conf.gen_cmake_option(cmake_output)
] + cmake_conf.gen_cmake_option(cmake_output)
report("CMake Config:", " ".join(configure_cmd))
subprocess.check_call(configure_cmd, **cmake_subprocess_args)

Expand Down

0 comments on commit dd95b2f

Please sign in to comment.