Skip to content
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
1 change: 1 addition & 0 deletions debian/control.top.in
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ Build-Depends:
docbook-xsl,
asciidoc,
ghostscript,
groff-base,
imagemagick,
asciidoc-dblatex,
autoconf,
Expand Down
3 changes: 2 additions & 1 deletion src/hal/components/Submakefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ obj-m += $(patsubst hal/drivers/%.comp, %.o, $(patsubst hal/components/%.comp, %
$(COMP_MANPAGES): ../docs/man/man9/%.9: hal/components/%.comp ../bin/halcompile
$(ECHO) Making halcompile manpage $(notdir $@)
@mkdir -p $(dir $@)
$(Q)../bin/halcompile -U --document -o $@ $<
$(Q)../bin/halcompile -U --document -o $@.new $< && preconv -r < $@.new > $@
$(RM) $@.new

$(COMP_DRIVER_MANPAGES): ../docs/man/man9/%.9: hal/drivers/%.comp ../bin/halcompile
$(ECHO) Making halcompile manpage $(notdir $@)
Expand Down
2 changes: 1 addition & 1 deletion src/hal/utils/halcompile.g
Original file line number Diff line number Diff line change
Expand Up @@ -886,7 +886,7 @@ def document(filename, outfilename):
if personality: has_personality = True
if isinstance(array, tuple): has_personality = True

print("""
print(""".\\" -*- mode: troff; coding: utf-8 -*-
.\\"*******************************************************************
.\\"
.\\" This file was extracted from %s using halcompile.g.
Expand Down