Overview
Comment: | Updated to correctly set 64bit flags |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | 9647859b3246b475372ea0a85468aa2ea6766018 |
User & Date: | rkeene on 2013-10-02 11:47:08 |
Other Links: | manifest | tags |
Context
2013-10-03
| ||
18:27 | Updated TclKit icon check-in: 657c96baa3 user: rkeene tags: trunk | |
2013-10-02
| ||
11:47 | Updated to correctly set 64bit flags check-in: 9647859b32 user: rkeene tags: trunk | |
11:45 | Updated check for 64bit platforms check-in: 2de7bba382 user: rkeene tags: trunk | |
Changes
Modified build/test/test from [6aeacbd961] to [0dfabb437f].
114 114 kitruncmd="wine" 115 115 ;; 116 116 win64|win64-*) 117 117 kitcreator="./build/make-kit-win32" 118 118 xcompile="1" 119 119 runnable="1" 120 120 kitruncmd="wine64" 121 - args="${args} --enable-64bit" 122 121 ;; 123 122 linux-mipsel-min|linux-mipsel-min-kitdll) 124 123 kitcreator="./build/make-kit-linux-mipsel" 125 124 runnable="0" 126 125 xcompile="1" 127 126 notk="1" 128 127 iszip="1" ................................................................................ 144 143 hpux-hppa64|hpux-hppa64-*) 145 144 platform="$(echo "${kit}" | cut -f 1-2 -d '-')" 146 145 kitcreator="./build/make-kit-${platform}" 147 146 runnable="0" 148 147 xcompile="1" 149 148 iszip="0" 150 149 151 - if echo "${kit}" | egrep -- '-(hppa64|amd64|sparc64)-' >/dev/null; then 152 - args="${args} --enable-64bit" 153 - fi 154 150 ;; 155 151 esac 152 + 153 + if echo "${kit}" | egrep -- '-(hppa64|amd64|sparc64)-' >/dev/null; then 154 + args="${args} --enable-64bit" 155 + fi 156 156 157 157 case "${kitruncmd}" in 158 158 wine) 159 159 WINEPREFIX="${WINEPREFIX32}" 160 160 export WINEPREFIX 161 161 ;; 162 162 wine64)