Index: apps/build.tcl =================================================================== diff -u -r09dab29bcc320fa5e893db81dac5a854bb106555 -ra3c5238427e54678488a1d50dccf84223c90c535 --- apps/build.tcl (.../build.tcl) (revision 09dab29bcc320fa5e893db81dac5a854bb106555) +++ apps/build.tcl (.../build.tcl) (revision a3c5238427e54678488a1d50dccf84223c90c535) @@ -7,6 +7,7 @@ proc ::build {HOMEDIR BUILDDIR TCLTAG {TOOLCHAIN autoconf-tea}} { set tarball "tcl.tar.gz" + set INSTALLDIR [file join $HOMEDIR build] cd $HOMEDIR @@ -56,8 +57,9 @@ exec >@stdout 2>@stderr bash -lc "make" cd $BUILDDIR - exec >@stdout 2>@stderr bash -lc "./configure --with-tcl=$tclDir" + exec >@stdout 2>@stderr bash -lc "./configure --prefix=$INSTALLDIR --with-tcl=$tclDir" exec >@stdout 2>@stderr bash -lc "make test" + exec >@stdout 2>@stderr bash -lc "make install" } nmake-tea { exec >@stdout 2>@stderr nmake -nologo -f makefile.vc TCLDIR=$tclRoot release