Skip to content

Commit

Permalink
Move oz-examples.1 to man page section 5 instead.
Browse files Browse the repository at this point in the history
Signed-off-by: Simon Josefsson <simon@josefsson.org>
  • Loading branch information
jas4711 committed Feb 8, 2022
1 parent 4a5dbb2 commit 9832cd0
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ release: signed-rpm signed-tarball deb
man2html:
@for file in oz-install oz-customize oz-generate-icicle oz-cleanup-cache oz-examples; do \
echo "Generating $$file HTML page from man" ; \
groff -mandoc -mwww man/$$file.1 -T html > man/$$file.html ; \
groff -mandoc -mwww man/$$file.? -T html > man/$$file.html ; \
done

$(VENV_DIR):
Expand Down
2 changes: 1 addition & 1 deletion man/oz-cleanup-cache.1
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ the ICICLE is generated, Oz will delete the backing file, leaving
the original disk image pristine.

.SH SEE ALSO
oz-generate-icicle(1), oz-install(1), oz-customize(1), oz-examples(1)
oz-generate-icicle(1), oz-install(1), oz-customize(1), oz-examples(5)

.SH AUTHOR
Chris Lalancette <clalancette@gmail.com>
2 changes: 1 addition & 1 deletion man/oz-customize.1
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ the ICICLE is generated, Oz will delete the backing file, leaving
the original disk image pristine.

.SH SEE ALSO
oz-generate-icicle(1), oz-install(1), oz-cleanup-cache(1), oz-examples(1)
oz-generate-icicle(1), oz-install(1), oz-cleanup-cache(1), oz-examples(5)

.SH AUTHOR
Chris Lalancette <clalancette@gmail.com>
2 changes: 1 addition & 1 deletion man/oz-examples.1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH OZ-EXAMPLES 1 "July 2013" "oz-examples"
.TH OZ-EXAMPLES 5 "July 2013" "oz-examples"

.SH NAME
oz-examples - example TDL files for Oz.
Expand Down
2 changes: 1 addition & 1 deletion man/oz-generate-icicle.1
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ the ICICLE is generated, Oz will delete the backing file, leaving
the original disk image pristine.

.SH SEE ALSO
oz-install(1), oz-customize(1), oz-cleanup-cache(1), oz-examples(1)
oz-install(1), oz-customize(1), oz-cleanup-cache(1), oz-examples(5)

.SH AUTHOR
Chris Lalancette <clalancette@gmail.com>
2 changes: 1 addition & 1 deletion man/oz-install.1
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ the ICICLE is generated, Oz will delete the backing file, leaving
the original disk image pristine.

.SH SEE ALSO
oz-generate-icicle(1), oz-customize(1), oz-cleanup-cache(1), oz-examples(1)
oz-generate-icicle(1), oz-customize(1), oz-cleanup-cache(1), oz-examples(5)

.SH AUTHOR
Chris Lalancette <clalancette@gmail.com>
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@
RELEASE = '0'

datafiles = [('share/man/man1', ['man/oz-install.1', 'man/oz-generate-icicle.1',
'man/oz-customize.1', 'man/oz-examples.1',
'man/oz-cleanup-cache.1'])
'man/oz-customize.1',
'man/oz-cleanup-cache.1']),
('share/man/man5', ['man/oz-examples.5'])
]

class sdist(_sdist):
Expand Down

0 comments on commit 9832cd0

Please sign in to comment.