Corrected tcsh man page installation

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@1747 af4574ff-66df-0310-9fd7-8a98e5e911e0
This commit is contained in:
Tushar Teredesai 2004-02-01 04:57:52 +00:00
parent 4772256ecf
commit 3195d5cbc7
3 changed files with 6 additions and 6 deletions

View File

@ -11,6 +11,9 @@ who wrote what.</para>
<itemizedlist>
<listitem><para>January 31st, 2004 [tushar]: Corrected man
page installation for tcsh.</para></listitem>
<listitem><para>January 31st, 2004 [tushar]: Added link
to Linux PAM Modules page. Closes bug 362.</para></listitem>

View File

@ -1,10 +1,7 @@
<sect2>
<title>Command explanations</title>
<para><command>cp tcsh.man /usr/share/man/man1/tcsh.1</command>:
<application>Tcsh</application> doesn't install its man page correctly, so we do it manually.</para>
<para><command>ln -s /usr/bin/tcsh /bin/csh</command>: The
<para><command>ln -sf /usr/bin/tcsh /bin/csh</command>: The
<acronym>FHS</acronym> states that
if there is a <application>C</application> shell installed, there should be a symlink from
<filename>/bin/csh</filename> to it. This creates that symlink.</para>

View File

@ -6,8 +6,8 @@
<screen><userinput><command>./configure --prefix=/usr &amp;&amp;
make &amp;&amp;
make install &amp;&amp;
cp tcsh.man /usr/share/man/man1/tcsh.1 &amp;&amp;
ln -s /usr/bin/tcsh /bin/csh</command></userinput></screen>
make install.man &amp;&amp;
ln -sf /usr/bin/tcsh /bin/csh</command></userinput></screen>
</sect2>