From f9e72fa93834264c95d9c20bb28c60883a57363c Mon Sep 17 00:00:00 2001 From: Gerard Beekmans Date: Wed, 14 Feb 2001 02:27:25 +0000 Subject: [PATCH] TERM=`echo $TERM` -> TERM=$TERM git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@162 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689 --- chapter01/changelog.sgml | 3 +-- chapter06/chroot.sgml | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/chapter01/changelog.sgml b/chapter01/changelog.sgml index 0e884797e..a449446cc 100644 --- a/chapter01/changelog.sgml +++ b/chapter01/changelog.sgml @@ -82,8 +82,7 @@ installation. 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 ... diff --git a/chapter06/chroot.sgml b/chapter06/chroot.sgml index af491edfb..189351268 100644 --- a/chapter06/chroot.sgml +++ b/chapter06/chroot.sgml @@ -17,7 +17,7 @@ actually /mnt/lfs but the shell doesn't know that). cd $LFS && chroot $LFS /usr/bin/env -i HOME=/root \ - TERM=`echo $TERM` /bin/bash --login + TERM=$TERM /bin/bash --login