Index: build/test/test ================================================================== --- build/test/test +++ build/test/test @@ -1,8 +1,8 @@ #! /bin/bash -VERSIONS="8.5.15 8.6.1 cvs_HEAD" +VERSIONS="8.5.15 8.6.2 cvs_HEAD" # Find the base directory for x in 1 2 3 4 __fail__; do if [ "${x}" = "__fail__" ]; then echo 'Unable to find KitCreator, aborting.' >&2 Index: build/web/kitcreator.vfs/index.rvt ================================================================== --- build/web/kitcreator.vfs/index.rvt +++ build/web/kitcreator.vfs/index.rvt @@ -15,10 +15,11 @@ set kitcreator_versions(trunk) "Fossil Trunk Tip" set tcl_versions(8.5.15) 8.5.15 set tcl_versions(8.6.1) 8.6.1 + set tcl_versions(8.6.2) 8.6.2 set tcl_versions(fossil_trunk) "Fossil Trunk Tip" set platforms(android-arm) "Android/ARM" set platforms(freebsd-amd64) "FreeBSD/amd64" set platforms(hpux-hppa64) "HP-UX/PA-RISC 2.0" Index: kitcreator ================================================================== --- kitcreator +++ kitcreator @@ -1,6 +1,9 @@ #! /usr/bin/env bash + +# Clean variables which will interfere with the build +unset MAKEFLAGS # Determine appropriate mode mode="build" case "$1" in clean|distclean|build|retry) @@ -8,11 +11,11 @@ shift ;; esac # Determine which Tcl version to build -TCLVERS="8.6.1" +TCLVERS="8.6.2" if echo "$1" | grep '^[0-9][0-9]*\.' >/dev/null || echo "$1" | egrep '^(cvs|fossil)_' >/dev/null; then TCLVERS="$1" shift fi