Overview
Comment: | Corrected typo in previous commit causing all things to be rendered as cross-compiles |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | fcac83fca73f8c86da3c6266bd963898e0e797d1 |
User & Date: | rkeene on 2014-05-29 05:56:46 |
Other Links: | manifest | tags |
Context
2014-06-02
| ||
01:39 | Updated to support trying local tclsh if cross-compiling and no Tclkit is available check-in: aae12ba51d user: rkeene tags: trunk | |
2014-05-29
| ||
05:56 | Corrected typo in previous commit causing all things to be rendered as cross-compiles check-in: fcac83fca7 user: rkeene tags: trunk | |
05:27 | Added more Mac OS X support to cross-compile fakeouts check-in: fe5d208867 user: rkeene tags: trunk | |
Changes
Modified kitcreator from [d9c2335c1d] to [d1783b634d].
61 61 export CONFIGUREEXTRA 62 62 63 63 if echo " ${CONFIGUREEXTRA} " | grep ' --enable-threads' >/dev/null 2>/dev/null; then 64 64 KITCREATOR_PKGS="${KITCREATOR_PKGS} thread" 65 65 fi 66 66 67 67 # Determine cross-compile status 68 -host_os="$(echo " ${CONFIGUREEXTRA} " sed 's@^.* --host=\([^ ]*\) .*$@\1@ 68 +host_os="$(echo " ${CONFIGUREEXTRA} " | sed 's@^.* --host=\([^ ]*\) .*$@\1@ 69 69 t x 70 70 d 71 71 :x')" 72 -build_os="$(echo " ${CONFIGUREEXTRA} " sed 's@^.* --build=\([^ ]*\) .*$@\1@ 72 +build_os="$(echo " ${CONFIGUREEXTRA} " | sed 's@^.* --build=\([^ ]*\) .*$@\1@ 73 73 t x 74 74 d 75 75 :x')" 76 76 77 77 if [ "${host_os}" != "${build_os}" -a -n "${host_os}" ]; then 78 78 KC_CROSSCOMPILE='1' 79 79 KC_CROSSCOMPILE_HOST_OS="${host_os}"