diff options
author | Brad Bishop <bradleyb@fuzziesquirrel.com> | 2019-08-16 18:11:55 -0400 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2019-08-17 01:42:54 -0700 |
commit | b42bc4fea687a591f0806c2e0f7807fcc1797033 (patch) | |
tree | dc29c754aa910eee39705df85163641246e02d0c /meta-oe | |
parent | 51799d2ce448b216eedf4ba9adb3aa42020d4cf8 (diff) | |
download | meta-openembedded-b42bc4fea687a591f0806c2e0f7807fcc1797033.tar.gz |
cli11: Remove dev pkg dep to main pkg
cli11 is header-only and the main package is empty. Remove the
dependency to cli11 from cli11-dev so cli11-dev can be included in an
SDK via IMAGE_INSTALL, RDEPENDS, and the like.
Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe')
-rw-r--r-- | meta-oe/recipes-support/cli11/cli11_1.8.0.bb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/cli11/cli11_1.8.0.bb b/meta-oe/recipes-support/cli11/cli11_1.8.0.bb index b6a434159..404545d5e 100644 --- a/meta-oe/recipes-support/cli11/cli11_1.8.0.bb +++ b/meta-oe/recipes-support/cli11/cli11_1.8.0.bb | |||
@@ -17,3 +17,6 @@ inherit ptest | |||
17 | 17 | ||
18 | EXTRA_OECMAKE += "-DCLANG_TIDY=OFF" | 18 | EXTRA_OECMAKE += "-DCLANG_TIDY=OFF" |
19 | DEPENDS += "boost" | 19 | DEPENDS += "boost" |
20 | |||
21 | # cli11 is a header only C++ library, so the main package will be empty. | ||
22 | RDEPENDS_${PN}-dev = "" | ||