mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-27 07:23:30 +08:00
package/libglib2: make util-linux an optional dependency
libglib2 needs util-linux only for libmount, which is a configuration option. Instead, check if util-linux-libmount is selected, and if so, set the option to true. Signed-off-by: Adam Duskett <Aduskett@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
parent
bb912cb36d
commit
e5353e7558
@ -7,8 +7,6 @@ config BR2_PACKAGE_LIBGLIB2
|
||||
select BR2_PACKAGE_LIBFFI
|
||||
select BR2_PACKAGE_PCRE
|
||||
select BR2_PACKAGE_PCRE_UCP
|
||||
select BR2_PACKAGE_UTIL_LINUX
|
||||
select BR2_PACKAGE_UTIL_LINUX_LIBMOUNT
|
||||
select BR2_PACKAGE_ZLIB
|
||||
help
|
||||
Low-level core library that forms the basis of GTK+ and GNOME.
|
||||
|
@ -33,7 +33,7 @@ HOST_LIBGLIB2_CONF_OPTS = \
|
||||
|
||||
LIBGLIB2_DEPENDENCIES = \
|
||||
host-pkgconf host-libglib2 \
|
||||
libffi pcre util-linux zlib $(TARGET_NLS_DEPENDENCIES)
|
||||
libffi pcre zlib $(TARGET_NLS_DEPENDENCIES)
|
||||
|
||||
HOST_LIBGLIB2_DEPENDENCIES = \
|
||||
host-gettext \
|
||||
@ -80,6 +80,14 @@ define LIBGLIB2_REMOVE_GDB_FILES
|
||||
endef
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_UTIL_LINUX_LIBMOUNT),y)
|
||||
LIBGLIB2_CONF_OPTS += -Dlibmount=true
|
||||
LIBGLIB2_DEPENDENCIES += util-linux
|
||||
else
|
||||
LIBGLIB2_CONF_OPTS += -Dlibmount=false
|
||||
endif
|
||||
|
||||
|
||||
# Purge useless binaries from target
|
||||
define LIBGLIB2_REMOVE_DEV_FILES
|
||||
rm -rf $(TARGET_DIR)/usr/lib/glib-2.0
|
||||
|
Loading…
Reference in New Issue
Block a user