diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-06-13 09:11:00 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-06-15 08:35:01 +0100 |
commit | 57bde4568dafedf3bda43273a5d3f99d54992845 (patch) | |
tree | 36f973ac800b15e1fe649dd492afd2a6fa3ea18d /meta | |
parent | b41b2fa4dd69fdc8946bfa1d2cb4a20b68435ddc (diff) | |
download | poky-57bde4568dafedf3bda43273a5d3f99d54992845.tar.gz |
testexport-tarball: Add default value for TEST_EXPORT_SDK_PACKAGES
Otherwise we see parsing failures in the default configuration:
'''
Nothing RPROVIDES '${TEST_EXPORT_SDK_PACKAGES}' (but
/media/build1/poky/meta/recipes-core/meta/testexport-tarball.bb
RDEPENDS on or otherwise requires it)
'''
(From OE-Core rev: 79aa2d34590660c788e0a6c56ef1bb1a5dda5119)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-core/meta/testexport-tarball.bb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-core/meta/testexport-tarball.bb b/meta/recipes-core/meta/testexport-tarball.bb index 951d3be057..d9861c4da7 100644 --- a/meta/recipes-core/meta/testexport-tarball.bb +++ b/meta/recipes-core/meta/testexport-tarball.bb | |||
@@ -6,6 +6,8 @@ LICENSE = "MIT" | |||
6 | LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=4d92cd373abda3937c2bc47fbc49d690 \ | 6 | LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=4d92cd373abda3937c2bc47fbc49d690 \ |
7 | file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" | 7 | file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" |
8 | 8 | ||
9 | TEST_EXPORT_SDK_PACKAGES ??= "" | ||
10 | |||
9 | TOOLCHAIN_TARGET_TASK ?= "" | 11 | TOOLCHAIN_TARGET_TASK ?= "" |
10 | 12 | ||
11 | TOOLCHAIN_HOST_TASK ?= "${TEST_EXPORT_SDK_PACKAGES}" | 13 | TOOLCHAIN_HOST_TASK ?= "${TEST_EXPORT_SDK_PACKAGES}" |