kraisorn Taoyad wrote: > hi everybody > I have problem about expect-5.43. > this is a procedure and error. > 1. /mnt/lfs/source/tcl8.4.9# cd unix > 2. # ./configure --prefix=/tools > 3. # make && make install > 4. # cd .. > 5. # export TCLPATH='pwd' > # ln -s tclsh8.4 /tools/bin/tclsh > in expect directory > > 1. # ./configure --prefix=/tools --with-tcl=/tools/lib \ > --with-tclinclude=$TCLPATH --with-x-no > show this error > > Checking for Tcl private headers... configure: error : pwd directory > doesn't contain > private headers > > help me please > > thank you .
You used the wrong ' . instead of export TCLPATH='pwd' it should be export TCLPATH=`pwd` if you do echo $TCLPATH the first one gives you: pwd the second one: /mnt/lfs/source/tcl8.4.9 I suggest that you just do: export TCLPATH="/mnt/lfs/source/tcl8.4.9" and continue with chapter 5.9.1 expect. regards thorsten happel -- http://linuxfromscratch.org/mailman/listinfo/lfs-support FAQ: http://www.linuxfromscratch.org/lfs/faq.html Unsubscribe: See the above information page
