Skip to content

Commit

Permalink
Merge pull request #523 from dhellmann/fix-elf-provides-0.34
Browse files Browse the repository at this point in the history
Fix: Write fromager-elf-provides file
  • Loading branch information
dhellmann authored Dec 6, 2024
2 parents e290bdb + 45debe3 commit 39a2fde
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 @@ -91,7 +91,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 39a2fde

Please sign in to comment.