Differences From Artifact [af3b94cbc4]:
- Executable file
build/pre.sh
— part of check-in
[e854407d3f]
at
2010-09-26 04:45:57
on branch trunk
— Updated to support patching Tcl using scripts
Created internal build script to create statically linked Diet Libc-based Tclkits (user: rkeene, size: 358) [annotate] [blame] [check-ins using] [more...]
To Artifact [0906205539]:
- Executable file
build/pre.sh
— part of check-in
[4f4058fd40]
at
2010-09-30 06:39:29
on branch trunk
— Updated KitDLL to search for libraries to link to from other projects
Added KitDLL prepartion and checking to pre-release initialization script (user: rkeene, size: 608) [annotate] [blame] [check-ins using]
1 2 3 4 5 6 | #! /bin/bash ./kitcreator distclean KITSHROOTDIR="$(ls -1d kitsh/buildsrc/kitsh-*/)" export KITSHROOTDIR | < > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | #! /bin/bash ./kitcreator distclean KITSHROOTDIR="$(ls -1d kitsh/buildsrc/kitsh-*/)" export KITSHROOTDIR ( 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 KITDLLROOTDIR="$(ls -1d kitdll/buildsrc/kitdll-*/)" export KITDLLROOTDIR ( cd "${KITDLLROOTDIR}" || exit 1 autoconf; autoheader rm -rf autom4te.cache rm -f *~ ./configure || exit 1 make vfs_kitdll.tcl.h || exit 1 make distclean ) || exit 1 rm -rf tcl/patchscripts/ find . -name '.*.sw?' -type f | xargs rm -f |