diff options
author | Robert P. J. Day <rpjday@crashcourse.ca> | 2013-01-02 20:07:30 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-01-07 11:09:42 +0000 |
commit | d12bffc262df872bf6edd00c430e0f7fbbcb37ee (patch) | |
tree | bc37fc213ecda5cbb3788e043b2a2efe5f8a57d5 /meta/classes | |
parent | 0f2614bab7f46f0417030a539473a874fc2b805d (diff) | |
download | ast2050-yocto-poky-d12bffc262df872bf6edd00c430e0f7fbbcb37ee.zip ast2050-yocto-poky-d12bffc262df872bf6edd00c430e0f7fbbcb37ee.tar.gz |
lib_package.bbclass: Correct comment referring to bin directories.
FILES_${PN}-bin = "${bindir}/* ${sbindir}/*"
so the comment should match that.
(From OE-Core rev: 81bc0b96a085742f7dc9e8e90bb32529efbaf920)
Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/lib_package.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/lib_package.bbclass b/meta/classes/lib_package.bbclass index d514257..8849f59 100644 --- a/meta/classes/lib_package.bbclass +++ b/meta/classes/lib_package.bbclass @@ -2,6 +2,6 @@ # ${PN}-bin is defined in bitbake.conf # # We need to allow the other packages to be greedy with what they -# want out of /bin and /usr/bin before ${PN}-bin gets greedy. +# want out of /usr/bin and /usr/sbin before ${PN}-bin gets greedy. # PACKAGE_BEFORE_PN = "${PN}-bin" |