From 9a9e6df3f402bd86abda6cc67e085357bfbac870 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20M=C3=A9lotte?= Date: Fri, 1 Aug 2025 15:07:16 +0000 Subject: [PATCH] package/mupdf: skip installing docs to the target MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 Signed-off-by: Romain Naour (cherry picked from commit ba48197d1fe5d6a67c3138377851c43482b5698c) Signed-off-by: Thomas Perale --- package/mupdf/mupdf.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/mupdf/mupdf.mk b/package/mupdf/mupdf.mk index 6b666033eb..6fdbf59f05 100644 --- a/package/mupdf/mupdf.mk +++ b/package/mupdf/mupdf.mk @@ -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))