Skip to content

Commit

Permalink
Fix one problem with building the sdist
Browse files Browse the repository at this point in the history
  • Loading branch information
bryanwweber authored and speth committed Apr 25, 2023
1 parent 700fd6a commit 1672898
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions interfaces/python_sdist/SConscript
Expand Up @@ -38,6 +38,8 @@ def copy_ext_src(target, source, env):
if not FMT_SOURCE.is_dir():
raise ValueError("Missing fmt submodule. " + error_message)
for cc_file in (FMT_SOURCE / "src").glob("*.cc"):
if cc_file.name == "fmt.cc":
continue
shutil.copy2(cc_file, FMT_ROOT)
shutil.copytree(FMT_SOURCE / "include" / "fmt", FMT_ROOT / "fmt")

Expand Down

0 comments on commit 1672898

Please sign in to comment.