Index: .travis.yml =================================================================== diff -u -r16f15e0928cc28e34242b2adad1d566309994f40 -r91e76546614194b166aa310423453c4129324c8a --- .travis.yml (.../.travis.yml) (revision 16f15e0928cc28e34242b2adad1d566309994f40) +++ .travis.yml (.../.travis.yml) (revision 91e76546614194b166aa310423453c4129324c8a) @@ -32,7 +32,6 @@ found, continuing" ; fi install: - mkdir -p $KITS -- mkdir -p ${HOME}/build - if [ $TRAVIS_OS_NAME = linux ]; then URL=http://kitcreator.rkeene.org/kits/840dec4286102c869d85bae3b0dcd32565e7bf12/tclkit; else URL=http://kitcreator.rkeene.org/kits/6967b89da1f6af7b12cdc82819f3bdb13a661242/tclkit; fi Index: apps/build.tcl =================================================================== diff -u -r16f15e0928cc28e34242b2adad1d566309994f40 -r91e76546614194b166aa310423453c4129324c8a --- apps/build.tcl (.../build.tcl) (revision 16f15e0928cc28e34242b2adad1d566309994f40) +++ apps/build.tcl (.../build.tcl) (revision 91e76546614194b166aa310423453c4129324c8a) @@ -7,7 +7,7 @@ proc ::build {HOMEDIR BUILDDIR TCLTAG {TOOLCHAIN autoconf-tea}} { set tarball "tcl.tar.gz" - set INSTALLDIR [file join $HOMEDIR build] + set INSTALLDIR [file join $HOMEDIR install] cd $HOMEDIR @@ -58,9 +58,9 @@ cd $BUILDDIR puts BUILDDIR=$BUILDDIR,PWD=[pwd],INSTALLDIR=$INSTALLDIR - exec >@stdout 2>@stderr bash -lc "./configure --prefix=$INSTALLDIR --exec-prefix=$INSTALLDIR --with-tcl=$tclDir && make test && make install" - # exec >@stdout 2>@stderr bash -lc "make test" - # exec >@stdout 2>@stderr bash -lc "make install" + 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" } nmake-tea { exec >@stdout 2>@stderr nmake -nologo -f makefile.vc TCLDIR=$tclRoot release