aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Huntwork <jhuntwork@linuxfromscratch.org>2005-06-24 10:17:32 +0000
committerJeremy Huntwork <jhuntwork@linuxfromscratch.org>2005-06-24 10:17:32 +0000
commit6614263bf9ae72945df0432f07fd45dc93ae965c (patch)
treea8ec9aeeae5b326546a7dfa68bb1ee39a4b9c48f
parentb3ea288e18a3ab32360aa8a1781c6b243e80f06c (diff)
Changed the instructions for setting the TCLPATH variable. Needed to be in one directory higher to retrieve the proper path from pwd.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@6140 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-rw-r--r--chapter01/changelog.xml3
-rw-r--r--chapter05/tcl.xml3
-rw-r--r--general.ent4
3 files changed, 7 insertions, 3 deletions
diff --git a/chapter01/changelog.xml b/chapter01/changelog.xml
index 251797668..55addc43b 100644
--- a/chapter01/changelog.xml
+++ b/chapter01/changelog.xml
@@ -89,6 +89,9 @@ First a summary, then a detailed log.</para>
</itemizedlist>
</listitem>
+<listitem><para>June 24rd, 2005 [jhuntwork]: Fixed the setting of the
+TCLPATH variable in the Tcl instructions.</para></listitem>
+
<listitem><para>June 23rd, 2005 [jhuntwork]: Added --with-tclinclude in Expect build
to ensure it finds the Tcl headers.</para></listitem>
diff --git a/chapter05/tcl.xml b/chapter05/tcl.xml
index 9d8dec092..11b2ff753 100644
--- a/chapter05/tcl.xml
+++ b/chapter05/tcl.xml
@@ -71,7 +71,8 @@ will need its internal headers.</para></warning>
<para>Set a variable containing the full path of the current directory.
The next package, Expect, will use this variable to find Tcl's headers.</para>
-<screen><userinput>export TCLPATH=`pwd`</userinput></screen>
+<screen><userinput>cd ..
+export TCLPATH=`pwd`</userinput></screen>
<para>Now make a necessary symbolic link:</para>
diff --git a/general.ent b/general.ent
index 463c803b8..3c802e3db 100644
--- a/general.ent
+++ b/general.ent
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="ISO-8859-1"?>
-<!ENTITY version "SVN-20050623">
-<!ENTITY releasedate "June 23, 2005">
+<!ENTITY version "SVN-20050624">
+<!ENTITY releasedate "June 24, 2005">
<!ENTITY milestone "6.2">
<!ENTITY lfs-root "http://www.linuxfromscratch.org/">