aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2005-04-01 01:32:46 +0000
committerChris Larson <clarson@kergoth.com>2005-04-01 01:32:46 +0000
commitf8776728ceefc5f860490610869ead22d93ed26b (patch)
treee95499cde6d611bac490b5903a845943b3ccd817
parenta770e56eed977039457037380d810bfd0ab15e68 (diff)
downloadopenembedded-f8776728ceefc5f860490610869ead22d93ed26b.tar.gz
Add a couple new sed statements to binconfig.bbclass. The current ones weren't fixing up a lot of binconfig scripts, including edb and audiofile.
BKrev: 424ca4be7dxiZnat3ONkffto3f3K9g
-rw-r--r--classes/binconfig.bbclass2
1 files changed, 2 insertions, 0 deletions
diff --git a/classes/binconfig.bbclass b/classes/binconfig.bbclass
index cfc444cf26..c660fd9cae 100644
--- a/classes/binconfig.bbclass
+++ b/classes/binconfig.bbclass
@@ -10,6 +10,8 @@ def get_binconfig_mangle(d):
s += " -e 's:=${datadir}:=OEDATADIR:'"
s += " -e 's:=${prefix}:=OEPREFIX:'"
s += " -e 's:=${exec_prefix}:=OEEXECPREFIX:'"
+ s += " -e 's:-L${libdir}:-LOELIBDIR:;'"
+ s += " -e 's:-I${includedir}:-IOEINCDIR:;'"
s += " -e 's:OELIBDIR:${STAGING_LIBDIR}:;'"
s += " -e 's:OEINCDIR:${STAGING_INCDIR}:;'"
s += " -e 's:OEDATADIR:${STAGING_DATADIR}:'"