TERM=echo $TERM -> TERM=$TERM

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@162 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
This commit is contained in:
Gerard Beekmans 2001-02-14 02:27:25 +00:00
parent d1d9e5f2f9
commit f9e72fa938
2 changed files with 2 additions and 3 deletions

View File

@ -82,8 +82,7 @@ installation.
<listitem><para>
Chapter 6: When entering chroot the $TERM variable inside chroot is set
properly. This is accomplished by: chroot ... -i HOME=/root TERM=`echo
$TERM` ...
properly. This is accomplished by: chroot ... -i HOME=/root TERM=$TERM ...
</para></listitem>
</itemizedlist>

View File

@ -17,7 +17,7 @@ actually /mnt/lfs but the shell doesn't know that).
<userinput>cd $LFS &amp;&amp;</userinput>
<userinput>chroot $LFS /usr/bin/env -i HOME=/root \
TERM=`echo $TERM` /bin/bash --login</userinput>
TERM=$TERM /bin/bash --login</userinput>
</literallayout></blockquote>