blob: 5f001078dfc2e7cc852b66a64d599b398df13c98 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
Index: iputils/doc/Makefile
===================================================================
--- iputils.orig/doc/Makefile 2007-10-28 17:27:31.000000000 -0400
+++ iputils/doc/Makefile 2007-12-09 21:01:24.000000000 -0500
@@ -6,7 +6,7 @@
html: $(HTMLFILES) iputils.html
-man: $(MANFILES)
+man: $(MANFILES) fix_sgml2man
# docbook scripts are incredibly dirty in the sense that they leak
# lots of some strange temporary junk directories and files.
@@ -33,6 +33,9 @@
@set -e; cd tmp.db2man; nsgmls ../$< | sgmlspl ../docbook2man-spec.pl ; mv $@ ..
@-rm -rf tmp.db2man
+fix_sgml2man:
+ @sed -i -e 's!\\fB\\fIdestination\\fB\\fR \[\\fB/\\fIport\\fB\\fR\]!\\fB\\fIdestination\\fB\\fR[\\fB/\\fIport\\fB\\fR]!g' tracepath.8
+
clean:
@rm -rf $(MANFILES) $(HTMLFILES) iputils.html tmp.db2html tmp.db2man
|