diff options
-rw-r--r-- | recipes/libxsettings-client/libxsettings-client.inc | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/recipes/libxsettings-client/libxsettings-client.inc b/recipes/libxsettings-client/libxsettings-client.inc index 70139f6124..1eb8961c1c 100644 --- a/recipes/libxsettings-client/libxsettings-client.inc +++ b/recipes/libxsettings-client/libxsettings-client.inc @@ -2,18 +2,19 @@ SECTION = "gpe/libs" LICENSE = "BSD-X" PRIORITY = "optional" DEPENDS = "libxsettings virtual/libx11 libxt" +RDEPENDS_${PN}-dev += " libxsettings-dev" # libxt is required to stop configure breaking builds by # including system paths to find it if it isn't present. GPE_TARBALL_SUFFIX = "bz2" inherit autotools pkgconfig gpe -INC_PR = "r2" +INC_PR = "r3" SRC_URI = "${GPE_MIRROR}/libxsettings-client-${PV}.tar.bz2 \ " -headers = "xsettings-client.h xsettings-common.h" +headers = "xsettings-client.h" do_stage () { oe_libinstall -so libXsettings-client ${STAGING_LIBDIR} mkdir -p ${STAGING_INCDIR} @@ -22,3 +23,6 @@ do_stage () { done } +do_install_append () { + rm ${D}/${includedir}/xsettings-common.h +} |