aboutsummaryrefslogtreecommitdiffstats
path: root/chapter05/expect-inst.xml
diff options
context:
space:
mode:
authorGreg Schafer <greg@linuxfromscratch.org>2003-09-24 23:48:45 +0000
committerGreg Schafer <greg@linuxfromscratch.org>2003-09-24 23:48:45 +0000
commit3a788f0c7908aaf9aa115ec6e2cba3217b67fad5 (patch)
tree00ca4c395161efd86a1874f1c71f0f91d80bf898 /chapter05/expect-inst.xml
parent978d0bffc413b67ead9db2d2816b916cf3d502ca (diff)
Next batch of fixes for Bug 675 - missing command descriptions.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@2880 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter05/expect-inst.xml')
-rw-r--r--chapter05/expect-inst.xml13
1 files changed, 13 insertions, 0 deletions
diff --git a/chapter05/expect-inst.xml b/chapter05/expect-inst.xml
index 2851ece04..f95e396f1 100644
--- a/chapter05/expect-inst.xml
+++ b/chapter05/expect-inst.xml
@@ -14,6 +14,19 @@ GCC test suite run.</para>
<para><screen><userinput>./configure --prefix=/tools --with-tcl=/tools/lib --with-x=no</userinput></screen></para>
+<para>The meaning of the configure options:</para>
+
+<itemizedlist>
+<listitem><para><userinput>--with-tcl=/tools/lib</userinput>: This ensures that
+the configure script finds the Tcl installation in our temporary tools location.
+We don't want it to find an existing one that may possibly reside on the host
+system.</para></listitem>
+
+<listitem><para><userinput>--with-x=no</userinput>: This tells the configure
+script not to search for Tk (the Tcl GUI component) or the X Window System
+libraries, both of which may possibly reside on the host system.</para></listitem>
+</itemizedlist>
+
<para>Build the package:</para>
<para><screen><userinput>make</userinput></screen></para>