git.openpandora.org
/
openembedded.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8402454
)
pkgconfig bbclass: also sed out bogus includes
author
Koen Kooi
<koen@openembedded.org>
Wed, 25 Nov 2009 12:11:43 +0000
(13:11 +0100)
committer
Koen Kooi
<koen@openembedded.org>
Wed, 25 Nov 2009 12:11:43 +0000
(13:11 +0100)
RP says: In theory the recipes themselves should be patched to stop this nonesense getting in there in the first place
but that is appropriate for pkgconfig.bbclass
classes/pkgconfig.bbclass
patch
|
blob
|
history
diff --git
a/classes/pkgconfig.bbclass
b/classes/pkgconfig.bbclass
index
5844461
..
f3d9371
100644
(file)
--- a/
classes/pkgconfig.bbclass
+++ b/
classes/pkgconfig.bbclass
@@
-3,7
+3,7
@@
DEPENDS_prepend = "pkgconfig-native "
do_install_prepend () {
for i in `find ${S}/ -name "*.pc" -type f` ; do \
- sed -i -e 's:-L${STAGING_LIBDIR}::g' $i
+ sed -i -e 's:-L${STAGING_LIBDIR}::g'
-e 's:-I${STAGING_INCDIR}::g'
$i
done
}