Index: apps/build.tcl =================================================================== diff -u -rfccfdc038f84733ebd83f212204ab89a5841fa76 -r7ecd981f0dbdc3a0bf545b5492b7beb9eae9ba2a --- apps/build.tcl (.../build.tcl) (revision fccfdc038f84733ebd83f212204ab89a5841fa76) +++ apps/build.tcl (.../build.tcl) (revision 7ecd981f0dbdc3a0bf545b5492b7beb9eae9ba2a) @@ -53,14 +53,15 @@ switch -exact -- $TOOLCHAIN { autoconf-tea { - exec -ignorestderr bash -lc "./configure --libdir=$tclDir --enable-64bit" - exec -ignorestderr bash -lc "make" + exec >@stdout 2>@stderr bash -lc "./configure --libdir=$tclDir --enable-64bit" + exec >@stdout 2>@stderr bash -lc "make" cd $BUILDDIR - puts BUILDDIR=$BUILDDIR,PWD=[pwd],INSTALLDIR=$INSTALLDIR - exec >@stdout 2>@stderr bash -lc "./configure --prefix=$INSTALLDIR --exec-prefix=$INSTALLDIR --with-tcl=$tclDir" + # puts BUILDDIR=$BUILDDIR,PWD=[pwd],INSTALLDIR=$INSTALLDIR + exec >@stdout 2>@stderr bash -lc "./configure --with-tcl=$tclDir" + # exec >@stdout 2>@stderr bash -lc "./configure --prefix=$INSTALLDIR --exec-prefix=$INSTALLDIR --with-tcl=$tclDir" exec >@stdout 2>@stderr bash -lc "make test" - exec >@stdout 2>@stderr bash -lc "make install" + # exec >@stdout 2>@stderr bash -lc "make install" } nmake-tea { exec >@stdout 2>@stderr nmake -nologo -f makefile.vc TCLDIR=$tclRoot release