diff options
author | Robert P. J. Day <rpjday@crashcourse.ca> | 2013-01-02 20:07:30 -0500 |
---|---|---|
committer | Saul Wold <sgw@linux.intel.com> | 2013-01-04 22:12:06 -0800 |
commit | 81bc0b96a085742f7dc9e8e90bb32529efbaf920 (patch) | |
tree | 78d65c4720a0f1c3ec1319241f045e091e3d5a5a /meta | |
parent | 49dd3fb76c59b5baeec4820575db4e8e9c17d417 (diff) | |
download | openembedded-core-81bc0b96a085742f7dc9e8e90bb32529efbaf920.tar.gz openembedded-core-81bc0b96a085742f7dc9e8e90bb32529efbaf920.tar.bz2 openembedded-core-81bc0b96a085742f7dc9e8e90bb32529efbaf920.zip |
lib_package.bbclass: Correct comment referring to bin directories.
FILES_${PN}-bin = "${bindir}/* ${sbindir}/*"
so the comment should match that.
Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta')
-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 d5142576bd..8849f59042 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" |