diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2008-05-12 17:59:41 -0300 |
---|---|---|
committer | Otavio Salvador <otavio@ossystems.com.br> | 2008-10-17 14:08:00 -0300 |
commit | ff3ecd7691c5eaca89fe1cea624e317840992e5a (patch) | |
tree | 41c70ac826df8f25e4c28bab9be6d457eeae608a /packages/xfce/xfce-mcs-manager.inc | |
parent | 28e4d0d45db2e4d4abb97e5b04adca1f94eb1cde (diff) |
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.
Diffstat (limited to 'packages/xfce/xfce-mcs-manager.inc')
-rw-r--r-- | packages/xfce/xfce-mcs-manager.inc | 4 |
1 files changed, 4 insertions, 0 deletions
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 +} |