Overview
Comment: | Updated to pass configure arguments to configure script |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
48744656f9e3a709b8065fc0c1002c3d |
User & Date: | rkeene on 2010-09-26 04:38:51 |
Other Links: | manifest | tags |
Context
2010-09-26
| ||
04:38 |
Updated to check for define subprojects working as found
Updated to only link against C++ libs if Mk4tcl worked Updated to check for MK4TCL available before referencing it Added SunStudio C++ libraries check-in: ea89461e7c user: rkeene tags: trunk | |
04:38 | Updated to pass configure arguments to configure script check-in: 48744656f9 user: rkeene tags: trunk | |
04:38 | Updated to allow the user to specify an alternative patch tool check-in: 9e9595a17a user: rkeene tags: trunk | |
Changes
Modified kitsh/build.sh from [913931f5ab] to [6cd5958958].
︙ | ︙ | |||
26 27 28 29 30 31 32 | cp -r 'buildsrc' 'build' cd "${BUILDDIR}" || exit 1 # Cleanup, just incase the incoming directory was not pre-cleaned ${MAKE:-make} distclean >/dev/null 2>/dev/null # Compile Kitsh | | | 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | cp -r 'buildsrc' 'build' cd "${BUILDDIR}" || exit 1 # Cleanup, just incase the incoming directory was not pre-cleaned ${MAKE:-make} distclean >/dev/null 2>/dev/null # Compile Kitsh ./configure --with-tcl="${TCLCONFIGDIR}" ${CONFIGUREEXTRA} ${MAKE:-make} || exit 1 # Strip the kit of all symbols, if possible strip kit >/dev/null 2>/dev/null # Create VFS directory mkdir "starpack.vfs" |
︙ | ︙ |