Overview
| Comment: | Corrected typo |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
0fb44ad54165a31cf77ce5c7efce470f |
| User & Date: | rkeene on 2011-06-30 00:29:08 |
| Other Links: | manifest | tags |
Context
|
2011-07-06
| ||
| 02:03 | Updated build procedure to use a common handler check-in: 6305420046 user: rkeene tags: trunk | |
|
2011-06-30
| ||
| 00:29 | Corrected typo check-in: 0fb44ad541 user: rkeene tags: trunk | |
|
2011-03-30
| ||
| 16:42 | Fixed bug in forcing platform check-in: 8fc5835c15 user: rkeene tags: trunk | |
Changes
Modified server/buildpkgs/tclpkcs11/build.sh from [2e24f26dd6] to [273f6727b7].
| ︙ | ︙ | |||
8 9 10 11 12 13 14 |
if [ "${PLATFORM}" = "tcl" ]; then
rm -rf out
exit 0
fi
| | | | 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
if [ "${PLATFORM}" = "tcl" ]; then
rm -rf out
exit 0
fi
VERS=0.9.9
SRC="src/tclpkcs11-${VERS}.tar.gz"
SRCURL="http://www.rkeene.org/devel/tclpkcs11-${VERS}.tar.gz"
BUILDDIR="tclpkcs11-${VERS}"
WORKDIR="${TMPDIR:-/tmp}/tclpkcs11-$$${RANDOM}${RANDOM}${RANDOM}"
PLATDIR="$(pwd)/out/${PLATFORM}"
export VERS SRC SRCURL BUILDDIR WORKDIR PLATDIR
|
| ︙ | ︙ |