Overview
Comment: | Updated to Tcl 8.6.2 and updated to clear MAKEFLAGS environment variable, which can influence sub-builds |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
fb09031888f2c92bf47f8c3bb7e3f384 |
User & Date: | rkeene on 2014-08-28 17:44:38 |
Other Links: | manifest | tags |
Context
2014-08-28
| ||
18:13 | Updated to clear DESTDIR as well, since it also breaks the build check-in: 90ea47d409 user: rkeene tags: trunk | |
17:44 | Updated to Tcl 8.6.2 and updated to clear MAKEFLAGS environment variable, which can influence sub-builds check-in: fb09031888 user: rkeene tags: trunk | |
2014-07-23
| ||
04:59 | Moved description check-in: 0478a7f8f6 user: rkeene tags: trunk | |
Changes
Modified build/test/test from [3cd3ee2783] to [af8be2e90b].
1 2 | 1 2 3 4 5 6 7 8 9 10 | - + | #! /bin/bash |
︙ |
Modified build/web/kitcreator.vfs/index.rvt from [f9925dfa52] to [8e0117b024].
︙ | |||
13 14 15 16 17 18 19 20 21 22 23 24 25 26 | 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | + | } set kitcreator_version_selected [lindex [lsort -dictionary [array names kitcreator_versions]] end] 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" set platforms(linux-amd64) "Linux/amd64" set platforms(linux-arm) "Linux/ARM" |
︙ |
Modified kitcreator from [d1783b634d] to [288a790a72].
1 2 3 4 5 6 7 8 9 10 11 12 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | + + + - + | #! /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) mode="$1" shift ;; esac # Determine which Tcl version to build |
︙ |