blob: f004b51a34ca93e0de62037a0e95fbfcbceb4a38 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<sect2>
<title>Installation of Man</title>
<para>Run the following commands to install man:</para>
<para><screen><userinput>for i in configure src/Makefile.in src/makewhatis.sh</userinput>
<userinput>do</userinput>
<userinput> cp $i $i.backup &&</userinput>
<userinput> sed 's/gawk/awk/g' $i > tmp~ &&</userinput>
<userinput> mv tmp~ $i</userinput>
<userinput>done</userinput>
<userinput>chmod 700 configure &&</userinput>
<userinput>./configure -default &&</userinput>
<userinput>make &&</userinput>
<userinput>make install</userinput></screen></para>
<para>You may want to take a look at the man hint at <ulink
url="&hint-root;man.txt">&hint-root;man.txt</ulink>
which deals with formatting and compression issues for man pages.</para>
</sect2>
|