From a39f4b86e63aeb731c4a6c1ac656fe1e0aa4b638 Mon Sep 17 00:00:00 2001 From: Bas Couwenberg Date: Sat, 30 Aug 2025 21:30:46 +0200 Subject: [PATCH] Fix paths to pyfiles for manpage generation. --- docs/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/Makefile b/docs/Makefile index dfd5d42..56d8dd0 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -2,7 +2,7 @@ ARGPARSE_BASEARGS=--author 'Sarah Hoffmann' --author-email 'lonvia@denofr.de' -- man: mkdir -p man - argparse-manpage --pyfile ../tools/pyosmium-get-changes --function get_arg_parser ${ARGPARSE_BASEARGS} --output man/pyosmium-get-changes.1 - argparse-manpage --pyfile ../tools/pyosmium-up-to-date --function get_arg_parser ${ARGPARSE_BASEARGS} --output man/pyosmium-up-to-date.1 + argparse-manpage --pyfile ../src/osmium/tools/pyosmium_get_changes.py --function get_arg_parser ${ARGPARSE_BASEARGS} --output man/pyosmium-get-changes.1 + argparse-manpage --pyfile ../src/osmium/tools/pyosmium_up_to_date.py --function get_arg_parser ${ARGPARSE_BASEARGS} --output man/pyosmium-up-to-date.1 .PHONY: man