-
Notifications
You must be signed in to change notification settings - Fork 18
RDKMVE-2033:Disable lighttpd #2803
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
base: develop
Are you sure you want to change the base?
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -221,3 +221,5 @@ DEPENDS += " cjson crun jsonrpc libarchive libdash libevent gssdp harfbuzz hired | |
| graphite2 curl openssl zlib glib-networking glib-2.0 \ | ||
| lighttpd systemd sqlite3 \ | ||
| " | ||
| DEPENDS:remove = "${@bb.utils.contains('DISTRO_FEATURES', 'enable_bolt_apps', "lighttpd ", "", d)}" | ||
| RDEPENDS:${PN}:remove = "${@bb.utils.contains('DISTRO_FEATURES', 'enable_bolt_apps', "lighttpd ", "", d)}" | ||
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Using
DEPENDS += "... lighttpd ..."and then conditionally removing it viaDEPENDS:removemakes the final dependency set harder to understand/maintain. Consider expressing the conditional directly where the dependency is added (e.g., usebb.utils.contains(...)in theDEPENDS/RDEPENDSlists) so the dependency is only introduced when needed.