-
Notifications
You must be signed in to change notification settings - Fork 710
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
sdbus-c++-libsystemd: bugfix dev package is not installed #567
sdbus-c++-libsystemd: bugfix dev package is not installed #567
Conversation
can you try using |
@kraj yes it works also, is there any reason to use |
As explained many times in various places ALLOW_EMPTY just adds completely useless empty package into the image. And creates confusion when someone "installs" the package on target just to discover that the package manager downloaded and installed useless thing which was created just to keep default runtime dependencies in recipes happy. |
since sdbus-c++-libsystemd outputs only static libraries, it will not be installed inside the SDK. add RDEPENDS:${PN}-dev = "" to remove the dependency to the empty package when installing the sdbus-c++-libsystemd-dev into the SDK without this change the SDK is missing sdbus-c++-dev and sdbus-c++-libsystemd-dev Signed-off-by: Ben Fekih, Hichem <hichem.benfekih@ifm.com>
70d4fdc
to
b44104c
Compare
thank you for the explanation. |
applied with ec6d073 |
Changelog: url for these releases <https://github.com/pyscaffold/pyscaffold/issues/####> ========= Ensure build configuration produces sdist as it is needed by conda, openembedded#570 Documentation improvements in openembedded#567 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Changelog: ========= Update vendored double-conversion to 3.2.1 (openembedded#570) Fix len integer overflow issue (openembedded#567) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Changelog: ========= Update vendored double-conversion to 3.2.1 (openembedded#570) Fix len integer overflow issue (openembedded#567) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Changelog: ========= Update vendored double-conversion to 3.2.1 (openembedded#570) Fix len integer overflow issue (openembedded#567) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
since sdbus-c++-libsystemd outputs only static libraries, it will
not be installed inside the SDK.
add RDEPENDS:${PN}-dev = "" to remove the dependency to the empty package
when installing the sdbus-c++-libsystemd-dev into the SDK
without this change the SDK is missing sdbus-c++-dev and sdbus-c++-libsystemd-dev
Signed-off-by: Ben Fekih, Hichem hichem.benfekih@ifm.com