Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move oz-examples.1 to man page section 5 instead. #294

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 <[email protected]>
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 <[email protected]>
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 <[email protected]>
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 <[email protected]>
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