Overview
Comment: | Updated to not require running "./configure" for pre.sh |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | 2ba5f90d1bbf08375cb3f2f9047b31b4c603175b |
User & Date: | rkeene on 2012-10-08 19:12:55 |
Other Links: | manifest | tags |
Context
2012-10-08
| ||
19:35 | Fixed issue with newer versions of Tcl providing a zlib package (version 2.0) check-in: 94567b3779 user: rkeene tags: trunk | |
19:12 | Updated to not require running "./configure" for pre.sh check-in: 2ba5f90d1b user: rkeene tags: trunk | |
2012-10-06
| ||
21:29 | Updated to not attempt to build kit.res.o unless we are actually on Windows check-in: 4de28fdabf user: rkeene tags: trunk | |
Changes
Modified build/pre.sh from [556988d635] to [9030af4614].
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
( cd "${KITSHROOTDIR}" || exit 1 autoconf; autoheader rm -rf autom4te.cache rm -f *~ ./configure || exit 1 make boot.tcl.h make zipvfs.tcl.h make distclean ) || exit 1 rm -f tcl/patchscripts/dietlibc.sh find . -name '.*.sw?' -type f | xargs rm -f |
| < < |
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
(
cd "${KITSHROOTDIR}" || exit 1
autoconf; autoheader
rm -rf autom4te.cache
rm -f *~
make -f Makefile.common.in boot.tcl.h zipvfs.tcl.h cvfs.tcl.h
make distclean
) || exit 1
rm -f tcl/patchscripts/dietlibc.sh
find . -name '.*.sw?' -type f | xargs rm -f
|