All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] staging.bbclass: do not fill log with empty .la files
@ 2010-08-04 13:51 Bernhard Reutner-Fischer
  0 siblings, 0 replies; only message in thread
From: Bernhard Reutner-Fischer @ 2010-08-04 13:51 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
---
 classes/staging.bbclass |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/classes/staging.bbclass b/classes/staging.bbclass
index e806449..f2046f8 100644
--- a/classes/staging.bbclass
+++ b/classes/staging.bbclass
@@ -47,7 +47,7 @@ sysroot_stage_libdir() {
 	cd $src
 	las=$(find . -name \*.la -type f)
 	cd $olddir
-	echo "Found la files: $las"		 
+	[ -n "${las}" ] && echo "Found la files: $las"
 	for i in $las
 	do
 		sed -e 's/^installed=yes$/installed=no/' \
-- 
1.7.1




^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2010-08-04 13:52 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-08-04 13:51 [PATCH] staging.bbclass: do not fill log with empty .la files Bernhard Reutner-Fischer

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.