Skip to content
Snippets Groups Projects
Commit 387863a5 authored by Iustin Pop's avatar Iustin Pop
Browse files

Add checks from wrong hard-coded paths in manpages


This is trivial, but should prevent such things in the future.

Signed-off-by: default avatarIustin Pop <iustin@google.com>
Reviewed-by: default avatarMichael Hanselmann <hansmi@google.com>
parent a6c79f3a
No related branches found
No related tags found
No related merge requests found
......@@ -637,6 +637,7 @@ EXTRA_DIST = \
autotools/docpp \
autotools/gen-coverage \
autotools/testrunner \
autotools/wrong-hardcoded-paths \
$(RUN_IN_TEMPDIR) \
daemons/daemon-util.in \
daemons/ganeti-cleaner.in \
......@@ -999,6 +1000,11 @@ man/footer.html: man/footer.rst
man/%.gen: man/%.rst lib/query.py lib/build/sphinx_ext.py \
lib/build/shell_example_lexer.py
@echo "Checking $< for hardcoded paths..."
@if grep -nEf autotools/wrong-hardcoded-paths $<; then \
echo "Man page $< has harcoded paths (see above)!" 1>&2 ; \
exit 1; \
fi
PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(DOCPP) < $< > $@
man/%.7.in man/%.8.in man/%.1.in: man/%.gen man/footer.man
......
/etc/ganeti
/usr/(local/)?lib/ganeti
/(usr/local/)?var/(lib|run|log)/ganeti
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment