Commit 4c1280ed authored by Yann E. MORIN's avatar Yann E. MORIN Committed by Thomas Petazzoni
Browse files

package/matchbox: make matchbox-lib a real package



Currently, the matchbox package is using weird, legacy constructs to
build its different parts.

Notably, it adds matchbox-lib to the list of packages to build, even
though it is not a real package since it does not have a Kconfig entry.

Fix that:
  - add a Kconfig entry for matchbox-lib
  - select it from the top-level matchbox package

Note that matchbox-common already depends on matchbox-lib.

Signed-off-by: default avatar"Yann E. MORIN" <yann.morin.1998@free.fr>
Reviewed-by: default avatarArnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
parent b95a85d4
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -7,6 +7,7 @@ config BR2_PACKAGE_MATCHBOX
	select BR2_PACKAGE_XLIB_LIBXEXT
	select BR2_PACKAGE_XLIB_LIBXDAMAGE
	select BR2_PACKAGE_XLIB_LIBXCURSOR
	select BR2_PACKAGE_MATCHBOX_LIB
	help
	  Matchbox is an Open Source base environment for the X Window
	  System running on non-desktop embedded platforms such as
@@ -17,6 +18,8 @@ config BR2_PACKAGE_MATCHBOX

if BR2_PACKAGE_MATCHBOX

source "package/matchbox/matchbox-lib/Config.in"

config BR2_PACKAGE_MATCHBOX_PANEL
	bool "Matchbox Panel"
	help
+2 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_MATCHBOX_LIB
	bool
+1 −1
Original line number Diff line number Diff line
ifeq ($(BR2_PACKAGE_MATCHBOX),y)
include $(sort $(wildcard package/matchbox/*/*.mk))
PACKAGES += matchbox-lib matchbox-wm
PACKAGES += matchbox-wm
endif