diff options
author | Chris Larson <clarson@kergoth.com> | 2005-04-01 01:32:46 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2005-04-01 01:32:46 +0000 |
commit | f8776728ceefc5f860490610869ead22d93ed26b (patch) | |
tree | e95499cde6d611bac490b5903a845943b3ccd817 /classes | |
parent | a770e56eed977039457037380d810bfd0ab15e68 (diff) |
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
Diffstat (limited to 'classes')
-rw-r--r-- | classes/binconfig.bbclass | 2 |
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}:'" |