[Privoxy-commits] [privoxy] 05/10: Leverage the $PRIVOXY_TOOLS variable in dok-privoxy-tools target
User Git
git at git.privoxy.org
Sat Apr 11 15:04:14 CEST 2026
This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository privoxy.
commit 4e0e4852610950dcfb67dc732c572aecad47b68d
Author: Fabian Keil <fk at fabiankeil.de>
AuthorDate: Sat Apr 11 14:13:16 2026 +0200
Leverage the $PRIVOXY_TOOLS variable in dok-privoxy-tools target
... to intentionally ignore url-pattern-translator which has
no man page.
---
GNUmakefile.in | 9 ++++-----
1 file changed, 4 insertions(+), 5 deletions(-)
diff --git a/GNUmakefile.in b/GNUmakefile.in
index a58772aa..43ecf7b2 100644
--- a/GNUmakefile.in
+++ b/GNUmakefile.in
@@ -603,12 +603,11 @@ dok-index:
doc/webserver/privoxy-index.html && $(RM) doc/webserver/*.bak
dok-privoxy-tools:
- cd tools && for privoxy_tool in *.pl; do \
+ cd tools && for privoxy_tool in $(PRIVOXY_TOOLS); do \
echo Generating man page for $${privoxy_tool}; \
- man_page=$${privoxy_tool%%.pl}.1; \
- $(POD2MAN_CMD) $${privoxy_tool} > ../man/$${man_page}; \
- html_man_page=../doc/webserver/man-page/$${man_page##*/}; \
- html_man_page=$${html_man_page%%.pl}.html; \
+ man_page=$${privoxy_tool}.1; \
+ $(POD2MAN_CMD) $${privoxy_tool}.pl > ../man/$${man_page}; \
+ html_man_page=../doc/webserver/man-page/$${man_page##*/}.html; \
$(G2H_CMD) ../man/$${man_page} | $(GREP) -v CreationDate > $${html_man_page}; \
done
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Privoxy-commits
mailing list