Check-in [0164bf3fc3]
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:0164bf3fc30da59a8ed3d352f29796c7795e44a0
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     69   
    70     70   function postdownload() {
    71     71   	:
    72     72   }
    73     73   
    74     74   function extract() {
    75     75   	if [ -d "${buildsrcdir}" ]; then
    76         -		mkdir "${workdir}" || return 1
           76  +		mkdir -p "${workdir}" || return 1
    77     77   
    78     78   		cp -rp "${buildsrcdir}"/* "${workdir}" || return 1
    79     79   
    80     80   		return 0
    81     81   	fi
    82     82   
    83     83   	if [ -n "${pkgarchive}" ]; then
    84     84   		(
    85         -			mkdir "${workdir}" || exit 1
           85  +			mkdir -p "${workdir}" || exit 1
    86     86   
    87     87   			cd "${workdir}" || exit 1
    88     88   
    89     89   			case "${pkgarchive}" in
    90     90   				*.tar.gz|*.tgz)
    91     91   					gzip -dc "${pkgarchive}" | tar -xf - || exit 1
    92     92   					;;