Overview
Comment: | Updated to create working directory since it is now nested |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
0164bf3fc30da59a8ed3d352f29796c7 |
User & Date: | rkeene on 2016-09-06 05:38:48 |
Other Links: | manifest | tags |
Context
2016-09-06
| ||
06:07 | Upgraded to latest version of libressl and fixed issues with it being relocated check-in: b29237b910 user: rkeene tags: trunk | |
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 | |
Changes
Modified common/common.sh from [cb976d3070] to [3f6cff667a].
︙ | ︙ | |||
69 70 71 72 73 74 75 | function postdownload() { : } function extract() { if [ -d "${buildsrcdir}" ]; then | | | | 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 | function postdownload() { : } function extract() { if [ -d "${buildsrcdir}" ]; then mkdir -p "${workdir}" || return 1 cp -rp "${buildsrcdir}"/* "${workdir}" || return 1 return 0 fi if [ -n "${pkgarchive}" ]; then ( mkdir -p "${workdir}" || exit 1 cd "${workdir}" || exit 1 case "${pkgarchive}" in *.tar.gz|*.tgz) gzip -dc "${pkgarchive}" | tar -xf - || exit 1 ;; |
︙ | ︙ |