Overview
Comment: | Updated new build system to use a directory structure closer resembling the old one for building |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
c4271b4b957b41c6e5cae2b6d72b8274 |
User & Date: | rkeene on 2016-09-06 05:32:19 |
Other Links: | manifest | tags |
Context
2016-09-06
| ||
05:38 | Updated to create working directory since it is now nested check-in: 0164bf3fc3 user: rkeene tags: trunk | |
05:32 | Updated new build system to use a directory structure closer resembling the old one for building check-in: c4271b4b95 user: rkeene tags: trunk | |
05:28 | Added support for applying patches to new build system check-in: b949baf854 user: rkeene tags: trunk | |
Changes
Modified common/common.sh from [5f5dece2ba] to [cb976d3070].
1 2 3 4 5 6 7 8 9 10 | #! /usr/bin/env bash targetInstallEnvironment='kitcreator' pkgdir="$(pwd)" internalpkgname="${pkg}" archivedir="${pkgdir}/src" buildsrcdir="${pkgdir}/buildsrc" installdir="${pkgdir}/inst" runtimedir="${pkgdir}/out" patchdir="${pkgdir}/patches" | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | #! /usr/bin/env bash targetInstallEnvironment='kitcreator' pkgdir="$(pwd)" internalpkgname="${pkg}" archivedir="${pkgdir}/src" buildsrcdir="${pkgdir}/buildsrc" installdir="${pkgdir}/inst" runtimedir="${pkgdir}/out" patchdir="${pkgdir}/patches" workdir="${pkgdir}/build/workdir-$$${RANDOM}${RANDOM}${RANDOM}${RANDOM}.work" _download="$(which download)" function clean() { rm -rf "${installdir}" "${runtimedir}" } function distclean() { rm -rf "${archivedir}" rm -rf "${pkgdir}"/build } function init() { clean || return 1 TCL_VERSION="unknown" if [ -f "${TCLCONFIGDIR}/tclConfig.sh" ]; then |
︙ | ︙ |
Modified kitcreator from [9196d0a46c] to [4aecbd19cc].
︙ | ︙ | |||
38 39 40 41 42 43 44 | # Always rebuild kitsh rm -f "kitsh/.success" for pkg in ${KITCREATOR_ALLPKGS} ${KITCREATOR_PKGS}; do if [ "${mode}" != "retry" -o ! -f "${pkg}/.success" ]; then rm -f "${pkg}/build.log" "${pkg}/.success" rm -rf "${pkg}/out" "${pkg}/inst" "${pkg}/build" | < | 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | # Always rebuild kitsh rm -f "kitsh/.success" for pkg in ${KITCREATOR_ALLPKGS} ${KITCREATOR_PKGS}; do if [ "${mode}" != "retry" -o ! -f "${pkg}/.success" ]; then rm -f "${pkg}/build.log" "${pkg}/.success" rm -rf "${pkg}/out" "${pkg}/inst" "${pkg}/build" rm -rf "${pkg}/src"/tmp-* fi if [ "${mode}" = "distclean" ]; then rm -rf "${pkg}/src" fi |
︙ | ︙ |