Check-in [f083221ace]
Overview
Comment:Make sure we skip the "common" directory
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: f083221ace6b439919c2dd0c32addcf042c26690
User & Date: rkeene on 2014-06-02 01:42:01
Other Links: manifest | tags
Context
2014-06-05
20:24
Merge cross compilation README changes check-in: 3fc4fa39ec user: venks tags: trunk
18:32
Add environment variables description for cross compilation to README check-in: c814d6b5fa user: venks tags: exp-venks
2014-06-02
01:42
Make sure we skip the "common" directory check-in: f083221ace user: rkeene tags: trunk
01:39
Updated to support trying local tclsh if cross-compiling and no Tclkit is available check-in: aae12ba51d user: rkeene tags: trunk
Changes

Modified kitsh/buildsrc/kitsh-0.0/aclocal.m4 from [88278c321a] to [871c795938].

176
177
178
179
180
181
182




183
184
185
186
187
188
189
		if test "${proj}" = "build"; then
			continue
		fi

		if test "${proj}" = "kitsh"; then
			continue
		fi





		projlibdir="../../../${proj}/inst"

		if test -d "${projlibdir}"; then
			true
		else
			continue







>
>
>
>







176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
		if test "${proj}" = "build"; then
			continue
		fi

		if test "${proj}" = "kitsh"; then
			continue
		fi

		if test "${proj}" = "common"; then
			continue
		fi

		projlibdir="../../../${proj}/inst"

		if test -d "${projlibdir}"; then
			true
		else
			continue