Check-in [90ea47d409]
Overview
Comment:Updated to clear DESTDIR as well, since it also breaks the build
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 90ea47d4095b5bdc180799a28c9aee69884b741e
User & Date: rkeene on 2014-08-28 18:13:45
Other Links: manifest | tags
Context
2014-08-31
19:04
Added Incr Tcl check-in: 5ae5d6d398 user: rkeene tags: trunk
2014-08-28
18:27
Merge updates from trunk. check-in: df02b7cfd1 user: mistachkin tags: winFixes
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
Changes

Modified kitcreator from [288a790a72] to [0b4c5bb22b].

1
2
3
4
5
6
7
8
9
10
11
#! /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



|







1
2
3
4
5
6
7
8
9
10
11
#! /usr/bin/env bash

# Clean variables which will interfere with the build
unset MAKEFLAGS DESTDIR

# Determine appropriate mode
mode="build"
case "$1" in
	clean|distclean|build|retry)
		mode="$1"
		shift