diff mbox series

[v2,3/3] package/mupdf: skip installing docs to the target

Message ID 20250501133002.1408454-3-raphael.melotte@mind.be
State New
Headers show
Series [v2,1/3] package/llvm-project: add support for clang python bindings | expand

Commit Message

Raphaël Mélotte May 1, 2025, 1:29 p.m. UTC
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>
---
 package/mupdf/mupdf.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/package/mupdf/mupdf.mk b/package/mupdf/mupdf.mk
index 493d46f77a..619f394497 100644
--- a/package/mupdf/mupdf.mk
+++ b/package/mupdf/mupdf.mk
@@ -97,7 +97,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))