diff options
author | James Cammarata <jimi@sngx.net> | 2014-03-17 16:00:51 +0100 |
---|---|---|
committer | James Cammarata <jimi@sngx.net> | 2014-03-17 16:02:54 +0100 |
commit | 12c812f030a6e5882544567990d81d0c1f882230 (patch) | |
tree | f77dbfd46334636eb465f81be529f858e05d29a1 /Makefile | |
parent | Add yum+apt integration tests for auto dependency installalation (diff) | |
download | ansible-12c812f030a6e5882544567990d81d0c1f882230.tar.xz ansible-12c812f030a6e5882544567990d81d0c1f882230.zip |
Adding a man page for ansible-vault
Fixes #6471
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -20,7 +20,7 @@ OS = $(shell uname -s) # Manpages are currently built with asciidoc -- would like to move to markdown # This doesn't evaluate until it's called. The -D argument is the # directory of the target file ($@), kinda like `dirname`. -MANPAGES := docs/man/man1/ansible.1 docs/man/man1/ansible-playbook.1 docs/man/man1/ansible-pull.1 docs/man/man1/ansible-doc.1 docs/man/man1/ansible-galaxy.1 +MANPAGES := docs/man/man1/ansible.1 docs/man/man1/ansible-playbook.1 docs/man/man1/ansible-pull.1 docs/man/man1/ansible-doc.1 docs/man/man1/ansible-galaxy.1 docs/man/man1/ansible-vault.1 ifneq ($(shell which a2x 2>/dev/null),) ASCII2MAN = a2x -D $(dir $@) -d manpage -f manpage $< ASCII2HTMLMAN = a2x -D docs/html/man/ -d manpage -f xhtml |