diff options
author | Martin Jansa <martin.jansa@gmail.com> | 2013-03-06 01:52:31 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-03-07 11:13:09 +0000 |
commit | 5ff26f61b6860e56c255b2b6a2b0215be75b1db9 (patch) | |
tree | a025a9693d85aa09e388047316d2d13c3c083d3d /meta/classes | |
parent | 1839f969bc5d6e1555f5e5d218c0265f817fe300 (diff) | |
download | openembedded-core-5ff26f61b6860e56c255b2b6a2b0215be75b1db9.tar.gz openembedded-core-5ff26f61b6860e56c255b2b6a2b0215be75b1db9.tar.bz2 openembedded-core-5ff26f61b6860e56c255b2b6a2b0215be75b1db9.zip |
kernel-module-split: append space to RDEPENDS
* it was generating invalid RDEPENDS when KERNEL_MODULES_META_PACKAGE had
RDEPENDS set already without trailing space
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/kernel-module-split.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/kernel-module-split.bbclass b/meta/classes/kernel-module-split.bbclass index aa0c499b79..45639c613c 100644 --- a/meta/classes/kernel-module-split.bbclass +++ b/meta/classes/kernel-module-split.bbclass @@ -173,7 +173,7 @@ python split_kernel_module_packages () { modules = do_split_packages(d, root='/lib/modules', file_regex=module_regex, output_pattern=module_pattern, description='%s kernel module', postinst=postinst, postrm=postrm, recursive=True, hook=frob_metadata, extra_depends='kernel-%s' % (d.getVar("KERNEL_VERSION", True))) if modules: metapkg = d.getVar('KERNEL_MODULES_META_PACKAGE', True) - d.appendVar('RDEPENDS_' + metapkg, ' '.join(modules)) + d.appendVar('RDEPENDS_' + metapkg, ' '+' '.join(modules)) # If modules-load.d and modprobe.d are empty at this point, remove them to # avoid warnings. removedirs only raises an OSError if an empty |