Differences From Artifact [9c9a954427]:
- Executable file
kitsh/build.sh
— part of check-in
[8d94c2989e]
at
2010-09-26 04:37:46
on branch trunk
— Removed building shared verions of code
Added support for passing arguments to child "configure" scripts
Added Solaris compile support (user: rkeene, size: 1809) [annotate] [blame] [check-ins using]
To Artifact [20e80b20ba]:
- Executable file kitsh/build.sh — part of check-in [04784f0fe8] at 2010-09-26 04:37:49 on branch trunk — Added a GNU autoconf script for building the kitsh (user: rkeene, size: 1394) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
23 24 25 26 27 28 29 | ( cp -r 'buildsrc' 'build' cd "${BUILDDIR}" || exit 1 # Compile all objects... | | | | | 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | ( cp -r 'buildsrc' 'build' cd "${BUILDDIR}" || exit 1 # Compile all objects... ./configure --with-tcl="${TCLCONFIGDIR}" ${MAKE:-make} || exit 1 strip kit >/dev/null 2>/dev/null # Create VFS directory mkdir "starpack.vfs" mkdir "starpack.vfs/lib" ## Copy in all built directories |
︙ | ︙ | |||
55 56 57 58 59 60 61 62 63 64 | ### Call installer cp kit runkit echo 'set argv [list kit starpack.vfs]' > setup.tcl echo 'source installvfs.tcl' >> setup.tcl echo | ./runkit fi ) || exit 1 exit 0 | > | 55 56 57 58 59 60 61 62 63 64 65 | ### Call installer cp kit runkit echo 'set argv [list kit starpack.vfs]' > setup.tcl echo 'source installvfs.tcl' >> setup.tcl echo | ./runkit fi exit 0 ) || exit 1 exit 0 |