Check-in [5996f7a35f]
Overview
Comment:Added support for creating proper kitsh environment
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 5996f7a35ff58af70f50dcb5c13ef7f1e884542a
User & Date: rkeene on 2010-09-26 04:37:52
Other Links: manifest | tags
Context
2010-09-26
04:37
Added support for using Tcl's required libs check-in: 5a492edc2b user: rkeene tags: trunk
04:37
Added support for creating proper kitsh environment check-in: 5996f7a35f user: rkeene tags: trunk
04:37
Added a GNU autoconf script for building the kitsh check-in: 04784f0fe8 user: rkeene tags: trunk
Changes

Modified build/pre.sh from [056aca99f7] to [f947ea4178].

1
2
3














#! /bin/sh

./kitcreator distclean














|


>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#! /bin/bash

./kitcreator distclean

KITSHROOTDIR="$(ls -1d kitsh/buildsrc/kitsh-*/)"
export KITSHROOTDIR

(
	cd "${KITSHROOTDIR}" || exit 1

	autoconf; autoheader
	rm -rf autom4te.cache

	./configure

	make distclean
)