diff options
author | joerg <joerg@pkgsrc.org> | 2009-04-21 14:21:10 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2009-04-21 14:21:10 +0000 |
commit | 9b57aff12162b5c76de1705f8a754da5fc70ef50 (patch) | |
tree | 9062cd2fa9287a475a1ef11c2b9fabcc67586d7b /bootstrap | |
parent | fa74d7a30933dc149f7e179033444d97cd69f213 (diff) | |
download | pkgsrc-9b57aff12162b5c76de1705f8a754da5fc70ef50.tar.gz |
Provide a better mkdir -p replacement for the early build for platforms
that don't have it.
Explicitly bail out if the work directory exists already.
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap/bootstrap | 21 |
1 files changed, 13 insertions, 8 deletions
diff --git a/bootstrap/bootstrap b/bootstrap/bootstrap index ba246c88a65..914226b2d33 100755 --- a/bootstrap/bootstrap +++ b/bootstrap/bootstrap @@ -1,6 +1,6 @@ #! /bin/sh -# $NetBSD: bootstrap,v 1.142 2009/04/06 14:21:05 joerg Exp $ +# $NetBSD: bootstrap,v 1.143 2009/04/21 14:21:10 joerg Exp $ # # # Copyright (c) 2001-2002 Alistair G. Crooks. All rights reserved. @@ -282,14 +282,14 @@ mkdir_p() mkdir_p_early() { - if [ ! -d "$1" ]; then - if mkdir -p "$1"; then - : - else - echo_msg "mkdir $1 exited with status $?" - die "aborted." - fi + [ -d "$1" ] && return 0 + mkdir -p "$1" 2> /dev/null && return 0 + mkdir_p_early `basename "$1"` + if [ ! -d "$1" ] && mkdir "$1"; then + echo_msg "mkdir $1 exited with status $?" + die "aborted." fi + return 0 } copy_src() @@ -692,6 +692,11 @@ check_prog sedprog sed check_prog shprog sh check_prog whoamiprog whoami +if [ -d "${wrkdir}" ] || [ -f "${wrkdir}"; then + echo "\"${wrkdir}\" already exists, please remove it or use --workdir."; + exit 1 +fi + mkdir_p_early ${wrkdir} if touch ${wrkdir}/.writeable; then : |