summaryrefslogtreecommitdiffstats
path: root/meta/classes/sstate.bbclass
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2013-01-29 13:37:39 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-01-30 14:09:09 +0000
commitb01b1a704bf4d8cf5a7cf9ca7fd0cea08d06969e (patch)
tree8a1e5e3d82f29f3dbd51c79581a0d594260d1664 /meta/classes/sstate.bbclass
parent53dec01483c0eeb1428a3c459dcaa9b97992ba73 (diff)
downloadpoky-b01b1a704bf4d8cf5a7cf9ca7fd0cea08d06969e.tar.gz
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. (From OE-Core rev: 3917409004a830e7ad0646f05ad7421385cbd1de) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/sstate.bbclass')
-rw-r--r--meta/classes/sstate.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/sstate.bbclass b/meta/classes/sstate.bbclass
index edddd2fa75..a79d2b557e 100644
--- a/meta/classes/sstate.bbclass
+++ b/meta/classes/sstate.bbclass
@@ -146,8 +146,8 @@ def sstate_install(ss, d):
146 locks.append(bb.utils.lockfile(lock)) 146 locks.append(bb.utils.lockfile(lock))
147 147
148 for state in ss['dirs']: 148 for state in ss['dirs']:
149 bb.debug(2, "Staging files from %s to %s" % (state[1], state[2]))
149 for walkroot, dirs, files in os.walk(state[1]): 150 for walkroot, dirs, files in os.walk(state[1]):
150 bb.debug(2, "Staging files from %s to %s" % (state[1], state[2]))
151 for file in files: 151 for file in files:
152 srcpath = os.path.join(walkroot, file) 152 srcpath = os.path.join(walkroot, file)
153 dstpath = srcpath.replace(state[1], state[2]) 153 dstpath = srcpath.replace(state[1], state[2])