From: Otavio Salvador Date: Mon, 12 May 2008 20:59:41 +0000 (-0300) Subject: xfce-mcs-manager.inc: fix .pc file to not have tmpdir on includedir field X-Git-Tag: Release-2010-05/1~5716^2~94 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ff3ecd7691c5eaca89fe1cea624e317840992e5a;p=openembedded.git xfce-mcs-manager.inc: fix .pc file to not have tmpdir on includedir field The includedir field was left with full path and this made the package to fail in sanity checks. This patch changes it to point to /usr/include as all other package does. --- diff --git a/packages/xfce/xfce-mcs-manager.inc b/packages/xfce/xfce-mcs-manager.inc index de12b14b05..8ad747b3bc 100644 --- a/packages/xfce/xfce-mcs-manager.inc +++ b/packages/xfce/xfce-mcs-manager.inc @@ -14,3 +14,7 @@ do_stage() { } +do_stage_append () { + install -d ${PKG_CONFIG_DIR} + sed -e 's:^includedir=.*:includedir="/usr/include":;' ${S}/xfce-mcs-manager/xfce-mcs-manager.pc >${PKG_CONFIG_DIR}/xfce-mcs-manager.pc +}