I'll read the FHS before quoting it in future

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@30 af4574ff-66df-0310-9fd7-8a98e5e911e0
This commit is contained in:
Mark Hymers 2002-07-14 21:07:34 +00:00
parent 986053af12
commit 695817242d
2 changed files with 3 additions and 6 deletions

View File

@ -1,14 +1,11 @@
<sect2>
<title>Command explanations</title>
<para><userinput>./configure --prefix= :</userinput> We do this because
shells should be installed in the /bin directory, not /usr/bin.</para>
<para><userinput>cp tcsh.man /usr/share/man/man1/tcsh.1
:</userinput>tcsh doesn't install its man-page correctly, so we do it
manually.</para>
<para><userinput>ln -s tcsh /bin/csh :</userinput> The FHS states that
<para><userinput>ln -s /usr/bin/tcsh /bin/csh :</userinput> The FHS states that
if there is a C shell installed, there should be a symlink from
<filename>/bin/csh</filename> to it. This creates that symlink.</para>

View File

@ -3,11 +3,11 @@
<para>Install tcsh by running the following commands:</para>
<para><screen><userinput>./configure --prefix= &amp;&amp;
<para><screen><userinput>./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 tcsh /bin/csh</userinput></screen></para>
ln -s /usr/bin/tcsh /bin/csh</userinput></screen></para>
</sect2>