Skip to content

Commit

Permalink
libid3tag: fix autotools package()
Browse files Browse the repository at this point in the history
  • Loading branch information
valgur committed Dec 3, 2023
1 parent 4479738 commit 2fd4dd0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions recipes/libid3tag/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,9 @@ def package(self):
cmake = CMake(self)
cmake.install()
else:
autotools = Autotools(self)
autotools.install()
with chdir(self, self.source_folder):
autotools = Autotools(self)
autotools.install()
rm(self, "*.la", self.package_folder, recursive=True)

def package_info(self):
Expand Down

0 comments on commit 2fd4dd0

Please sign in to comment.