a315d7c98b
Fix the following build failure with help2man raised since bump to
version 1.26.0 in commit be76508af2
:
FAILED: docs/man/mbimcli.1
/usr/bin/help2man --output=docs/man/mbimcli.1 '--name=Control MBIM devices' '--help-option="--help-all"' /home/peko/autobuild/instance-1/output-1/build/libmbim-1.26.0/build/src/mbimcli/mbimcli
help2man: can't get `"--help-all"' info from /home/peko/autobuild/instance-1/output-1/build/libmbim-1.26.0/build/src/mbimcli/mbimcli
Try `--no-discard-stderr' if option outputs to stderr
Fixes:
- http://autobuild.buildroot.org/results/eaa2ba54b9c74f07292d3cad4fa96c80e6079702
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
32 lines
932 B
Makefile
32 lines
932 B
Makefile
################################################################################
|
|
#
|
|
# libmbim
|
|
#
|
|
################################################################################
|
|
|
|
LIBMBIM_VERSION = 1.26.0
|
|
LIBMBIM_SITE = https://gitlab.freedesktop.org/mobile-broadband/libmbim/-/archive/$(LIBMBIM_VERSION)
|
|
LIBMBIM_LICENSE = LGPL-2.0+ (library), GPL-2.0+ (programs)
|
|
LIBMBIM_LICENSE_FILES = COPYING COPYING.LIB
|
|
LIBMBIM_CPE_ID_VENDOR = freedesktop
|
|
LIBMBIM_INSTALL_STAGING = YES
|
|
|
|
LIBMBIM_DEPENDENCIES = libglib2
|
|
LIBMBIM_CONF_OPTS = -Dman=false
|
|
|
|
ifeq ($(BR2_PACKAGE_GOBJECT_INTROSPECTION),y)
|
|
LIBMBIM_DEPENDENCIES += gobject-introspection
|
|
LIBMBIM_CONF_OPTS += -Dintrospection=true
|
|
else
|
|
LIBMBIM_CONF_OPTS += -Dintrospection=false
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_BASH_COMPLETION),y)
|
|
LIBMBIM_DEPENDENCIES += bash-completion
|
|
LIBMBIM_CONF_OPTS += -Dbash_completion=true
|
|
else
|
|
LIBMBIM_CONF_OPTS += -Dbash_completion=false
|
|
endif
|
|
|
|
$(eval $(meson-package))
|