##// 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 python gendoc.py > $@
18 python gendoc.py > $@
19
19
20 %: %.xml
20 %: %.xml
21 xmlto man $*.xml
21 xmlto man $*.xml ; \
22 sed -e 's/^\.hg/\\\&.hg/' $* > $*~ ; \
23 mv $*~ $*
22
24
23 %.xml: %.txt
25 %.xml: %.txt
24 asciidoc -d manpage -b docbook $*.txt
26 asciidoc -d manpage -b docbook $*.txt
@@ -68,7 +68,6 b' Here is an example ignore file.'
68 *.elc
68 *.elc
69 *.pyc
69 *.pyc
70 *~
70 *~
71 .*.swp
72
71
73 # switch to regexp syntax.
72 # switch to regexp syntax.
74 syntax: regexp
73 syntax: regexp
General Comments 0
You need to be logged in to leave comments. Login now