Overview
| Comment: | Fixed issue test not creating KitDLLs that are debugging |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
806626aa83d55ee9a316b7011484eb57 |
| User & Date: | rkeene on 2011-09-16 00:36:11 |
| Other Links: | manifest | tags |
Context
|
2011-09-16
| ||
| 13:35 | Fixed typo check-in: 7ea2ce6e68 user: rkeene tags: trunk | |
| 00:36 | Fixed issue test not creating KitDLLs that are debugging check-in: 806626aa83 user: rkeene tags: trunk | |
|
2011-09-15
| ||
| 20:00 | Added support for creating debug symbols builds check-in: 57ce9464cc user: rkeene tags: trunk | |
Changes
Modified build/test/test from [92e44308bd] to [7efd62ba50].
| ︙ | ︙ | |||
172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 |
;;
*-nomk4-*)
tempkit="$(echo "${tempkit}" | sed 's@-nomk4-@-@')"
nomk4="1"
iszip="1"
;;
*-kitdll-*)
kitdll="1"
;;
*-debug-*)
args="${args} --enable-symbols"
;;
esac
done
if [ "${kitdll}" = "1" ]; then
# Currently no KitDLL uses Zip
| > > | 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 |
;;
*-nomk4-*)
tempkit="$(echo "${tempkit}" | sed 's@-nomk4-@-@')"
nomk4="1"
iszip="1"
;;
*-kitdll-*)
tempkit="$(echo "${tempkit}" | sed 's@-kitdll-@-@')"
kitdll="1"
;;
*-debug-*)
tempkit="$(echo "${tempkit}" | sed 's@-debug-@-@')"
args="${args} --enable-symbols"
;;
esac
done
if [ "${kitdll}" = "1" ]; then
# Currently no KitDLL uses Zip
|
| ︙ | ︙ |