diff options
Diffstat (limited to 'meta')
-rw-r--r-- | 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 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]) |