[oe-commits] Richard Purdie : sstate: Move debug comment to more logical place

git at git.openembedded.org git at git.openembedded.org
Wed Jan 30 14:16:26 UTC 2013


Module: openembedded-core.git
Branch: master
Commit: 3917409004a830e7ad0646f05ad7421385cbd1de
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=3917409004a830e7ad0646f05ad7421385cbd1de

Author: Richard Purdie <richard.purdie at linuxfoundation.org>
Date:   Tue Jan 29 13:37:39 2013 +0000

sstate: Move debug comment to more logical place

The same log message gets output multiple times in the log which look
confusing and is rather pointless. Move the log message to the correct
level.

Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 meta/classes/sstate.bbclass |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/meta/classes/sstate.bbclass b/meta/classes/sstate.bbclass
index edddd2f..a79d2b5 100644
--- a/meta/classes/sstate.bbclass
+++ b/meta/classes/sstate.bbclass
@@ -146,8 +146,8 @@ def sstate_install(ss, d):
         locks.append(bb.utils.lockfile(lock))
 
     for state in ss['dirs']:
+        bb.debug(2, "Staging files from %s to %s" % (state[1], state[2]))
         for walkroot, dirs, files in os.walk(state[1]):
-            bb.debug(2, "Staging files from %s to %s" % (state[1], state[2]))
             for file in files:
                 srcpath = os.path.join(walkroot, file)
                 dstpath = srcpath.replace(state[1], state[2])





More information about the Openembedded-commits mailing list