diff options
author | Kai Kang <kai.kang@windriver.com> | 2014-04-21 14:24:52 +0800 |
---|---|---|
committer | Joe MacDonald <joe@deserted.net> | 2014-04-24 21:07:46 -0400 |
commit | 182c235bd97cfeda861fccda3634104a61bf5e79 (patch) | |
tree | f7d6f72b9cdb8b6dfb7cec252a3f892b05eb1504 /meta-networking | |
parent | b96ae8191dbd23b3105e324e5f4f3522664811ca (diff) | |
download | meta-openembedded-182c235bd97cfeda861fccda3634104a61bf5e79.tar.gz |
ndisc6: allow the package can be empty
FILES_${PN} is set to null in original .bb file, this would cause
ndisc6 main package is missing, then one build error will happen:
ERROR: ndisc6 not found in the base feeds (qemux86 i586 x86 noarch any all).
To fix this, need to set ALLOW_EMPTY_${PN} = "1".
Signed-off-by: Xudong.zhu <xudong.zhu@windriver.com>
Signed-off-by: Kai Kang <kai.kang@windriver.com>
Signed-off-by: Joe MacDonald <joe@deserted.net>
Diffstat (limited to 'meta-networking')
-rw-r--r-- | meta-networking/recipes-support/ndisc6/ndisc6_1.0.2.bb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta-networking/recipes-support/ndisc6/ndisc6_1.0.2.bb b/meta-networking/recipes-support/ndisc6/ndisc6_1.0.2.bb index a958e37bc..066aac2c0 100644 --- a/meta-networking/recipes-support/ndisc6/ndisc6_1.0.2.bb +++ b/meta-networking/recipes-support/ndisc6/ndisc6_1.0.2.bb | |||
@@ -19,6 +19,8 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe" | |||
19 | 19 | ||
20 | inherit autotools gettext | 20 | inherit autotools gettext |
21 | 21 | ||
22 | ALLOW_EMPTY_${PN} = "1" | ||
23 | |||
22 | # Split into seperate packages since we normal don't want them all | 24 | # Split into seperate packages since we normal don't want them all |
23 | # The main package is left empty and therefore not created. | 25 | # The main package is left empty and therefore not created. |
24 | PACKAGES += "${PN}-ndisc6 ${PN}-tcpspray6 ${PN}-rdisc6 \ | 26 | PACKAGES += "${PN}-ndisc6 ${PN}-tcpspray6 ${PN}-rdisc6 \ |