From: Henning Heinold Date: Tue, 9 Sep 2008 20:43:27 +0000 (+0000) Subject: binconfig: fix small bug found by Julian Chu from openmoko X-Git-Tag: Release-2010-05/1~6117 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a7011ae6cdb0e9feb54a78a4a28539a4d1b48f83;p=openembedded.git binconfig: fix small bug found by Julian Chu from openmoko --- diff --git a/classes/binconfig.bbclass b/classes/binconfig.bbclass index 5ce9ff6f0d..6c2c32a970 100644 --- a/classes/binconfig.bbclass +++ b/classes/binconfig.bbclass @@ -1,5 +1,7 @@ inherit base +FILES_${PN}-dev += "${bindir}/*-config" + # The namespaces can clash here hence the two step replace def get_binconfig_mangle(d): import bb.data @@ -39,7 +41,7 @@ do_install_append() { done fi - for lafile in `find ${D} -name *.la` ; do + for lafile in `find ${D} -name "*.la"` ; do sed -i \ -e 's:${STAGING_LIBDIR}:${libdir}:g;' \ -e 's:${STAGING_INCDIR}:${includedir}:g;' \