Differences From Artifact [288a790a72]:
- Executable file kitcreator — part of check-in [fb09031888] at 2014-08-28 17:44:38 on branch trunk — Updated to Tcl 8.6.2 and updated to clear MAKEFLAGS environment variable, which can influence sub-builds (user: rkeene, size: 5230) [annotate] [blame] [check-ins using]
To Artifact [0b4c5bb22b]:
- Executable file kitcreator — part of check-in [90ea47d409] at 2014-08-28 18:13:45 on branch trunk — Updated to clear DESTDIR as well, since it also breaks the build (user: rkeene, size: 5238) [annotate] [blame] [check-ins using]
1 1 #! /usr/bin/env bash 2 2 3 3 # Clean variables which will interfere with the build 4 -unset MAKEFLAGS 4 +unset MAKEFLAGS DESTDIR 5 5 6 6 # Determine appropriate mode 7 7 mode="build" 8 8 case "$1" in 9 9 clean|distclean|build|retry) 10 10 mode="$1" 11 11 shift