Skip to content

Commit

Permalink
Merge pull request #518 from tiran/fix-elf-provides
Browse files Browse the repository at this point in the history
Fix: Write fromager-elf-provides file
  • Loading branch information
mergify[bot] authored Dec 1, 2024
2 parents f00dcf2 + 6a6192d commit 6235e8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fromager/wheels.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def _extra_metadata_elfdeps(
names = sorted(p.soname for p in provides)
logger.info("%s: Provides libraries: %s", req.name, ", ".join(names))

provides_file = dist_info_dir / FROMAGER_ELF_REQUIRES
provides_file = dist_info_dir / FROMAGER_ELF_PROVIDES
with provides_file.open("w", encoding="utf-8") as f:
for soinfo in sorted(provides):
f.write(f"{soinfo}\n")
Expand Down

0 comments on commit 6235e8c

Please sign in to comment.