[oe-commits] : binconfig: fix small bug found by Julian Chu from openmoko

OE GIT Trial gittrial at amethyst.openembedded.net
Tue Sep 9 21:25:55 UTC 2008


Module: OE.dev
Branch: org.openembedded.dev
Commit: 8dcb0f1dd25b152aa41593505d13f8750d68b52c
URL:    http://gitweb.openembedded.net//OE.dev.git/?a=commit;h=8dcb0f1dd25b152aa41593505d13f8750d68b52c

Author:  <woglinde2 at openembedded.org>
Date:   Tue Sep  9 20:43:27 2008 +0000

binconfig: fix small bug found by Julian Chu from openmoko

---

 classes/binconfig.bbclass |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/classes/binconfig.bbclass b/classes/binconfig.bbclass
index 5ce9ff6..6c2c32a 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;' \





More information about the Openembedded-commits mailing list