Changeset 6856842 for chapter05/tcl.xml


Ignore:
Timestamp:
12/16/2005 04:06:59 PM (19 years ago)
Author:
Jeremy Huntwork <jhuntwork@…>
Children:
d663c90
Parents:
48553c1
Message:

Bring alphabetical branch up-to-speed with trunk

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/alphabetical/BOOK@7219 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

File:
1 edited

Legend:

Unmodified
Added
Removed
  • chapter05/tcl.xml

    r48553c1 r6856842  
    3939linkend="chapter-building-system"/>.</para>
    4040
     41<para>Tcl's configure script has a syntax error:</para>
     42<screen><userinput>cd unix
     43cp -v configure{,.orig}
     44sed "s/relid'/relid/" configure.orig &gt; configure</userinput></screen>
     45
    4146<para>Prepare Tcl for compilation:</para>
    4247
    43 <screen><userinput>cd unix
    44 ./configure --prefix=/tools</userinput></screen>
     48<screen><userinput>./configure --prefix=/tools</userinput></screen>
    4549
    4650<para>Build the package:</para>
     
    6367<screen><userinput>make install</userinput></screen>
    6468
    65 <warning><para><emphasis>Do not</emphasis> remove the
    66 <filename class="directory">tcl&tcl-version;</filename> source directory yet, as the next package
    67 will need its internal headers.</para></warning>
     69<para>Install Tcl's headers. The next package, Expect, requires them to build.</para>
    6870
    69 <para>Set a variable containing the full path of the current directory.
    70 The next package, Expect, will use this variable to find Tcl's headers.</para>
    71 
    72 <screen><userinput>cd ..
    73 export TCLPATH=`pwd`</userinput></screen>
     71<screen><userinput>make install-private-headers</userinput></screen>
    7472
    7573<para>Now make a necessary symbolic link:</para>
Note: See TracChangeset for help on using the changeset viewer.