diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-02-06 15:47:28 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-02-07 14:50:09 +0000 |
commit | 529582a23842dab0e223ff46d0d1b3d5c61a894a (patch) | |
tree | 19734a0a6fe83937d9c13e091776bef53cf80bf9 /meta/classes | |
parent | ab78c782f73be76cff55220b582b01d173d7f711 (diff) | |
download | poky-529582a23842dab0e223ff46d0d1b3d5c61a894a.tar.gz |
staging: Add missing parameter to debug message
(From OE-Core rev: 77ac40f8d4a4718b05f3692222a0dc91d90f0ab8)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/staging.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/staging.bbclass b/meta/classes/staging.bbclass index 0cb46bfd24..075200909b 100644 --- a/meta/classes/staging.bbclass +++ b/meta/classes/staging.bbclass | |||
@@ -464,7 +464,7 @@ python extend_recipe_sysroot() { | |||
464 | taskdeps[datadep] = setscenedeps[datadep][:2] | 464 | taskdeps[datadep] = setscenedeps[datadep][:2] |
465 | retval = setscene_depvalid(datadep, taskdeps, [], d, msgbuf) | 465 | retval = setscene_depvalid(datadep, taskdeps, [], d, msgbuf) |
466 | if retval: | 466 | if retval: |
467 | msgbuf.append("Skipping setscene dependency %s for installation into the sysroot") | 467 | msgbuf.append("Skipping setscene dependency %s for installation into the sysroot" % datadep) |
468 | continue | 468 | continue |
469 | done.append(datadep) | 469 | done.append(datadep) |
470 | new.append(datadep) | 470 | new.append(datadep) |