diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-12-19 09:46:33 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-12-20 15:32:11 +0000 |
commit | b8a603d3f1d3adac41d042e42a2283b7fdf2ae7c (patch) | |
tree | 6da6fd84e578c2ba4c5671df73e4ea5da2804ab9 /meta/recipes-kernel/kmod | |
parent | 978472c58629d1448399207873bbead96b27102e (diff) | |
download | openembedded-core-contrib-b8a603d3f1d3adac41d042e42a2283b7fdf2ae7c.tar.gz |
depmodwrapper-cross: Set PACKAGES=''
This recipe inherits nopackages but has a non-empty PACKAGES which confuses
the archiver class when:
INHERIT += "archiver"
ARCHIVER_MODE[srpm] = "1"
Ensuring PACKAGES is empty removes the errors that occur in this configuration.
[YOCTO #11121]
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-kernel/kmod')
-rw-r--r-- | meta/recipes-kernel/kmod/depmodwrapper-cross_1.0.bb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-kernel/kmod/depmodwrapper-cross_1.0.bb b/meta/recipes-kernel/kmod/depmodwrapper-cross_1.0.bb index 44d013f29d5..68d3f84c0b1 100644 --- a/meta/recipes-kernel/kmod/depmodwrapper-cross_1.0.bb +++ b/meta/recipes-kernel/kmod/depmodwrapper-cross_1.0.bb @@ -45,4 +45,5 @@ EOF SYSROOT_DIRS += "${bindir_crossscripts}" +PACKAGES = "" inherit nopackages |