package/mupdf: skip installing docs to the target

The current 'install' target comprises 'install-libs', 'install-apps'
and 'install-docs'.

In our case we don't want to install documentation to the target, so
just run the other two.

Signed-off-by: Raphaël Mélotte <raphael.melotte@mind.be>
Signed-off-by: Romain Naour <romain.naour@smile.fr>
This commit is contained in:
Raphaël Mélotte
2025-08-01 15:07:16 +00:00
committed by Romain Naour
parent 96e6d7092c
commit ba48197d1f

View File

@@ -68,7 +68,7 @@ endef
define MUPDF_INSTALL_TARGET_CMDS
$(MUPDF_MAKE_ENV) $(MAKE) -C $(@D) $(MUPDF_MAKE_OPTS) \
DESTDIR="$(TARGET_DIR)" install
DESTDIR="$(TARGET_DIR)" install-libs install-apps
endef
$(eval $(generic-package))