Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH 0/1] Fix fontconfig buildpaths QA check issue
@ 2015-07-16  2:37 Kai Kang
  2015-07-16  2:37 ` [PATCH 1/1] fontconfig: fix buildpaths QA check Kai Kang
  0 siblings, 1 reply; 2+ messages in thread
From: Kai Kang @ 2015-07-16  2:37 UTC (permalink / raw)
  To: openembedded-core

There is another buildpaths issue about
fontconfig/usr/lib64/libfontconfig.so.1.9.0. It should be fixed by patch of
insane.bbclass from Robert.

The following changes since commit a15b26de4b407726d3ba9bd1e888b2f1d2c586f5:

  dbus-ptest: set INSANE_SKIP for build-deps (2015-07-13 13:48:52 +0100)

are available in the git repository at:

  git://git.yoctoproject.org/poky-contrib kangkai/fontconfig
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=kangkai/fontconfig

Kai Kang (1):
  fontconfig: fix buildpaths QA check

 meta/recipes-graphics/fontconfig/fontconfig_2.11.93.bb | 4 ++++
 1 file changed, 4 insertions(+)

-- 
1.9.1



^ permalink raw reply	[flat|nested] 2+ messages in thread

* [PATCH 1/1] fontconfig: fix buildpaths QA check
  2015-07-16  2:37 [PATCH 0/1] Fix fontconfig buildpaths QA check issue Kai Kang
@ 2015-07-16  2:37 ` Kai Kang
  0 siblings, 0 replies; 2+ messages in thread
From: Kai Kang @ 2015-07-16  2:37 UTC (permalink / raw)
  To: openembedded-core

Variable Libs.private contains build path in file fontconfig.pc. It
fails buildpaths check and that is not the right value when use
pkg-config with option '--static'.

Remove build path from fontconfig.pc to fix it.

Signed-off-by: Kai Kang <kai.kang@windriver.com>
---
 meta/recipes-graphics/fontconfig/fontconfig_2.11.93.bb | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/meta/recipes-graphics/fontconfig/fontconfig_2.11.93.bb b/meta/recipes-graphics/fontconfig/fontconfig_2.11.93.bb
index e024adb..081ce1f 100644
--- a/meta/recipes-graphics/fontconfig/fontconfig_2.11.93.bb
+++ b/meta/recipes-graphics/fontconfig/fontconfig_2.11.93.bb
@@ -43,3 +43,7 @@ FONTCONFIG_CACHE_DIR ?= "${localstatedir}/cache/fontconfig"
 EXTRA_OECONF = " --disable-docs --with-default-fonts=${datadir}/fonts --with-cache-dir=${FONTCONFIG_CACHE_DIR}"
 
 BBCLASSEXTEND = "native"
+
+do_install_append() {
+    sed -i 's,${STAGING_DIR_HOST},,g' ${D}${libdir}/pkgconfig/fontconfig.pc
+}
-- 
1.9.1



^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2015-07-16  2:39 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-16  2:37 [PATCH 0/1] Fix fontconfig buildpaths QA check issue Kai Kang
2015-07-16  2:37 ` [PATCH 1/1] fontconfig: fix buildpaths QA check Kai Kang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox