diff options
author | Alejandro Colomar <alx@kernel.org> | 2025-06-27 04:48:57 +0200 |
---|---|---|
committer | Alejandro Colomar <alx@kernel.org> | 2025-06-28 16:51:43 +0200 |
commit | 6569dd9b22d256f26928ddcc398db9f123546171 (patch) | |
tree | e5c4fa20702c16d5cf1d8920c83f671b132c1017 | |
parent | 453a8c3586ef3ec04886db5f41b9d0fc1fbddd18 (diff) | |
download | man-pages-6569dd9b22d256f26928ddcc398db9f123546171.tar.gz |
share/mk/: uninstall-man: Fix support for pages with ':' in their file name
I don't know when this was exacly broken, since we didn't have such
pages until now.
Signed-off-by: Alejandro Colomar <alx@kernel.org>
-rw-r--r-- | share/mk/install/man.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/share/mk/install/man.mk b/share/mk/install/man.mk index 6c65c12145..c393467864 100644 --- a/share/mk/install/man.mk +++ b/share/mk/install/man.mk @@ -40,7 +40,8 @@ _manintropages_rm := $(addsuffix -rm, $(wildcard $(_manintropages))) $(foreach s, $(MANSECTIONS), \ $(eval _man$(s)pages_rm := \ $(addsuffix -rm, \ - $(wildcard $(_man$(s)pages))))) + $(subst :,\:, \ + $(wildcard $(_man$(s)pages)))))) $(foreach s, $(MANSECTIONS), \ |