mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-30 14:46:31 +00:00
ncurses: speed up the build by not installing manpages
The installation of manpages during the installation step of host-ncurses and ncurses is horribly slow, and useless. This commit therefore disables the installation of those manpages, using the --without-manpages configuration option. It brings the combined host-ncurses+ncurses configure/build/install time from 3 minutes and 18 seconds to 1 minute and 36 seconds. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
parent
d4f49fc1fe
commit
5d8acdc937
@ -27,7 +27,8 @@ NCURSES_CONF_OPT = \
|
|||||||
--enable-echo \
|
--enable-echo \
|
||||||
--enable-const \
|
--enable-const \
|
||||||
--enable-overwrite \
|
--enable-overwrite \
|
||||||
--enable-pc-files
|
--enable-pc-files \
|
||||||
|
$(if $(BR2_HAVE_DOCUMENTATION),,--without-manpages)
|
||||||
|
|
||||||
ifneq ($(BR2_ENABLE_DEBUG),y)
|
ifneq ($(BR2_ENABLE_DEBUG),y)
|
||||||
NCURSES_CONF_OPT += --without-debug
|
NCURSES_CONF_OPT += --without-debug
|
||||||
@ -115,7 +116,8 @@ define HOST_NCURSES_BUILD_CMDS
|
|||||||
endef
|
endef
|
||||||
|
|
||||||
HOST_NCURSES_CONF_OPT = \
|
HOST_NCURSES_CONF_OPT = \
|
||||||
--without-shared --without-gpm
|
--without-shared --without-gpm \
|
||||||
|
--without-manpages
|
||||||
|
|
||||||
$(eval $(autotools-package))
|
$(eval $(autotools-package))
|
||||||
$(eval $(host-autotools-package))
|
$(eval $(host-autotools-package))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user