package/upower: add gobject-introspection optional dependency

gobject-introspection is an optional dependency which is enabled by
default since
0d7bf34ed6

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
This commit is contained in:
Fabrice Fontaine 2022-03-30 19:32:37 +02:00 committed by Arnout Vandecappelle (Essensium/Mind)
parent 43991ac5e0
commit 8bcae68f37

View File

@ -22,4 +22,11 @@ UPOWER_DEPENDENCIES = \
UPOWER_CONF_OPTS = --disable-man-pages --disable-tests
ifeq ($(BR2_PACKAGE_GOBJECT_INTROSPECTION),y)
UPOWER_CONF_OPTS += --enable-introspection
UPOWER_DEPENDENCIES += gobject-introspection
else
UPOWER_CONF_OPTS += --disable-introspection
endif
$(eval $(autotools-package))