mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-19 16:40:46 -09:00
package/matchbox: make match-startup-monitor a real package
Currently, matchbox-startup-monitor is missing a Kconfig entry, but is so far solely a build-time dependency of matchbox-panel. So, make it a real package, and only build-depend on it when enabled. Fix the condition to build-depend on it. To keep the existing behaviour, default to 'y' when startup-notification is enabled. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Arnout Vandecappelle <arnout@mind.be> Reviewed-by: Arnout Vandecappelle <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
committed by
Thomas Petazzoni
parent
4be826c225
commit
cbb8096076
@@ -26,5 +26,6 @@ source "package/matchbox/matchbox-desktop/Config.in"
|
|||||||
source "package/matchbox/matchbox-common/Config.in"
|
source "package/matchbox/matchbox-common/Config.in"
|
||||||
source "package/matchbox/matchbox-fakekey/Config.in"
|
source "package/matchbox/matchbox-fakekey/Config.in"
|
||||||
source "package/matchbox/matchbox-keyboard/Config.in"
|
source "package/matchbox/matchbox-keyboard/Config.in"
|
||||||
|
source "package/matchbox/matchbox-startup-monitor/Config.in"
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|||||||
@@ -13,9 +13,9 @@ MATCHBOX_PANEL_LICENSE_FILES = COPYING
|
|||||||
MATCHBOX_PANEL_DEPENDENCIES = matchbox-lib
|
MATCHBOX_PANEL_DEPENDENCIES = matchbox-lib
|
||||||
MATCHBOX_PANEL_CONF_OPTS = --enable-expat
|
MATCHBOX_PANEL_CONF_OPTS = --enable-expat
|
||||||
|
|
||||||
ifeq ($(BR2_PACKAGE_STARTUP_NOTIFICATION),y)
|
ifeq ($(BR2_PACKAGE_MATCHBOX_STARTUP_MONITOR),y)
|
||||||
MATCHBOX_PANEL_CONF_OPTS += --enable-startup-notification
|
MATCHBOX_PANEL_CONF_OPTS += --enable-startup-notification
|
||||||
MATCHBOX_PANEL_DEPENDENCIES += startup-notification matchbox-startup-monitor
|
MATCHBOX_PANEL_DEPENDENCIES += matchbox-startup-monitor
|
||||||
else
|
else
|
||||||
MATCHBOX_PANEL_CONF_OPTS += --disable-startup-notification
|
MATCHBOX_PANEL_CONF_OPTS += --disable-startup-notification
|
||||||
endif
|
endif
|
||||||
|
|||||||
3
package/matchbox/matchbox-startup-monitor/Config.in
Normal file
3
package/matchbox/matchbox-startup-monitor/Config.in
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
config BR2_PACKAGE_MATCHBOX_STARTUP_MONITOR
|
||||||
|
bool
|
||||||
|
default y if BR2_PACKAGE_STARTUP_NOTIFICATION
|
||||||
Reference in New Issue
Block a user