Skip to content

Commit

Permalink
base_project: Install PC files in the pkg_dir directory
Browse files Browse the repository at this point in the history
Otherwise we are only able to add PC files. Now instead we are able
to provide PC files that replaces the ones already provided upstream.
  • Loading branch information
AlessandroBono authored and nacho committed Mar 18, 2024
1 parent 6e78080 commit 72c5c64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gvsbuild/utils/base_project.py
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ def install_dir(self, src, dest=None):

def install_pc_files(self, base_dir="pc-files"):
"""Install, setting dir & version, the .pc files."""
pkgconfig_dir = os.path.join(self.builder.gtk_dir, "lib", "pkgconfig")
pkgconfig_dir = os.path.join(self.pkg_dir, "lib", "pkgconfig")
self.builder.make_dir(pkgconfig_dir)

src_dir = os.path.join(self._get_working_dir(), base_dir)
Expand Down

0 comments on commit 72c5c64

Please sign in to comment.