Skip to content

Commit

Permalink
(#13645) glib: Fix libdir for PkgConfigDeps
Browse files Browse the repository at this point in the history
  • Loading branch information
jwillikers authored Oct 25, 2022
1 parent 13e9588 commit 1d92326
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions recipes/glib/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,10 @@
class GLibConan(ConanFile):
name = "glib"
description = "GLib provides the core application building blocks for libraries and applications written in C"
topics = ("glib", "gobject", "gio", "gmodule")
topics = ("gobject", "gio", "gmodule")
url = "https://github.com/conan-io/conan-center-index"
homepage = "https://gitlab.gnome.org/GNOME/glib"
license = "LGPL-2.1"

settings = "os", "arch", "compiler", "build_type"
options = {
"shared": [True, False],
Expand All @@ -39,7 +38,6 @@ class GLibConan(ConanFile):
"with_mount": True,
"with_selinux": True,
}

short_paths = True

@property
Expand Down Expand Up @@ -324,7 +322,7 @@ def package_info(self):
'datadir': '${prefix}/res',
'schemasdir': '${datadir}/glib-2.0/schemas',
'bindir': '${prefix}/bin',
'giomoduledir': '${libdir}/gio/modules',
'giomoduledir': '${prefix}/lib/gio/modules',
'gio': '${bindir}/gio',
'gio_querymodules': '${bindir}/gio-querymodules',
'glib_compile_schemas': '${bindir}/glib-compile-schemas',
Expand Down

0 comments on commit 1d92326

Please sign in to comment.