aboutsummaryrefslogtreecommitdiffstats
path: root/meta-efl/classes
diff options
context:
space:
mode:
authorMartin Jansa <martin.jansa@gmail.com>2011-11-30 08:16:52 +0000
committerKoen Kooi <koen@dominion.thruhere.net>2011-12-01 09:19:26 +0100
commitdcf924eb24aee888323727a64c33e57317f4d9c7 (patch)
tree10e5fa7a6dc4ba40d9512f9354ad78e1a9a6b989 /meta-efl/classes
parent65c84c66ce20cf1e1687bd59e15f7fd076e52c20 (diff)
downloadmeta-openembedded-contrib-dcf924eb24aee888323727a64c33e57317f4d9c7.tar.gz
efl.bbclass: don't remove STAGING_LIBDIR STAGING_INCDIR from efl pkgconfig files
* but replace those with ${libdir} and ${includedir} * it was breaking edbus: Cflags: -I${includedir}/e_dbus-1 -I/OE/shr-core/tmp-eglibc/sysroots/qemuarm/usr/include/dbus-1.0 -I/OE/shr-core/tmp-eglibc/sysroots/qemuarm/usr/lib/dbus-1.0/include after make install: Cflags: -I${includedir}/e_dbus-1 /dbus-1.0 -I/OE/shr-core/tmp-eglibc/sysroots/qemuarm/usr/lib/dbus-1.0/include * and notice that dbus-1 is using -I{libdir} here, so replace it too Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Diffstat (limited to 'meta-efl/classes')
-rw-r--r--meta-efl/classes/efl.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-efl/classes/efl.bbclass b/meta-efl/classes/efl.bbclass
index f90dc1ca42..792343b695 100644
--- a/meta-efl/classes/efl.bbclass
+++ b/meta-efl/classes/efl.bbclass
@@ -15,7 +15,7 @@ do_configure_prepend() {
do_install_prepend () {
for i in `find ${S}/ -name "*.pc" -type f` ; do \
- sed -i -e 's:-L${STAGING_LIBDIR}::g' -e 's:-I${STAGING_INCDIR}::g' $i
+ sed -i -e 's:-L${STAGING_LIBDIR}:-L\$\{libdir\}:g' -e 's:-I${STAGING_LIBDIR}:-I\$\{libdir\}:g' -e 's:-I${STAGING_INCDIR}:-I\$\{includedir\}:g' $i
done
}