blob: 48ef018fa23cec32b96003481640f5beac8f7890 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
Description: use a more robust approach to limit manpages installation to FHS-compliant directories. Thanks to Alejandro Colomar (upstream author).
Author: Marcos Fouces <marcos@debian.org>, Alejandro Colomar <alx@kernel.org>
--- a/share/mk/configure/directory_variables/install.mk
+++ b/share/mk/configure/directory_variables/install.mk
@@ -23,5 +23,9 @@
$(foreach s, $(MANSECTIONS), \
$(eval man$(s)ext := .$(s)))
+man2typedir := $(man2dir)
+man3constdir := $(man3dir)
+man3headdir := $(man3dir)
+man3typedir := $(man3dir)
endif # include guard
|