From: Phil Blundell Date: Sun, 19 Oct 2008 10:04:44 +0000 (+0100) Subject: binconfig: add terminating slashes to path matching regexps X-Git-Tag: Release-2010-05/1~5732^2 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=952e5e2b7a5c1deefc939594d40b81a71fb16a54;p=openembedded.git binconfig: add terminating slashes to path matching regexps --- diff --git a/classes/binconfig.bbclass b/classes/binconfig.bbclass index 6c2c32a970..5789903178 100644 --- a/classes/binconfig.bbclass +++ b/classes/binconfig.bbclass @@ -11,8 +11,8 @@ def get_binconfig_mangle(d): s += " -e 's:=%s${libdir}:=\\1OELIBDIR:;'" % optional_quote s += " -e 's:=%s${includedir}:=\\1OEINCDIR:;'" % optional_quote s += " -e 's:=%s${datadir}:=\\1OEDATADIR:'" % optional_quote - s += " -e 's:=%s${prefix}:=\\1OEPREFIX:'" % optional_quote - s += " -e 's:=%s${exec_prefix}:=\\1OEEXECPREFIX:'" % optional_quote + s += " -e 's:=%s${prefix}/:=\\1OEPREFIX/:'" % optional_quote + s += " -e 's:=%s${exec_prefix}/:=\\1OEEXECPREFIX/:'" % optional_quote s += " -e 's:-L${libdir}:-LOELIBDIR:;'" s += " -e 's:-I${includedir}:-IOEINCDIR:;'" s += " -e 's:OELIBDIR:${STAGING_LIBDIR}:;'"