##// END OF EJS Templates
doc: escape .hg at bol in manpages with make (issue1072)...
Christian Ebert -
r6486:960bc707 default
parent child Browse files
Show More
@@ -18,7 +18,9 b' hg.1.gendoc.txt: ../mercurial/commands.p'
18 18 python gendoc.py > $@
19 19
20 20 %: %.xml
21 xmlto man $*.xml
21 xmlto man $*.xml ; \
22 sed -e 's/^\.hg/\\\&.hg/' $* > $*~ ; \
23 mv $*~ $*
22 24
23 25 %.xml: %.txt
24 26 asciidoc -d manpage -b docbook $*.txt
@@ -68,7 +68,6 b' Here is an example ignore file.'
68 68 *.elc
69 69 *.pyc
70 70 *~
71 .*.swp
72 71
73 72 # switch to regexp syntax.
74 73 syntax: regexp
General Comments 0
You need to be logged in to leave comments. Login now