Overview
Comment: | Updated to compile threaded Tcl for tclkit |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
f45867a536fc4466e28aa1f10f6c4154 |
User & Date: | rkeene on 2014-01-25 07:27:23 |
Other Links: | manifest | tags |
Context
2014-01-25
| ||
08:23 | Added icon check-in: 2af245b1db user: rkeene tags: trunk | |
07:27 | Updated to compile threaded Tcl for tclkit check-in: f45867a536 user: rkeene tags: trunk | |
07:06 | Made smaller Tcl error check-in: e2aa9dcf13 user: rkeene tags: trunk | |
Changes
Modified Makefile from [b52bf2d7ba] to [c0b5c5eabc].
︙ | |||
119 120 121 122 123 124 125 | 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 | - + | @if test -n "$(KITCREATOR_SHA256)"; then if test "`openssl sha256 "$(KITCREATOR_TARBALL).new" | sed 's@^.*= *@@'`" != "$(KITCREATOR_SHA256)"; then echo "$(KITCREATOR_TARBALL): Checksum Mismatch!"; exit 1; fi; fi gzip -dc "$(KITCREATOR_TARBALL).new" | tar -tf - >/dev/null mv "$(KITCREATOR_TARBALL).new" "$(KITCREATOR_TARBALL)" tclkit-zip: $(KITCREATOR_TARBALL) rm -rf kitcreator-$(KITCREATOR_VERSION) gzip -dc "$(KITCREATOR_TARBALL)" | tar -xf - |
︙ |