summaryrefslogtreecommitdiff
path: root/bootstrap
diff options
context:
space:
mode:
authorjoerg <joerg>2009-04-21 14:21:10 +0000
committerjoerg <joerg>2009-04-21 14:21:10 +0000
commitf4b833f7dbd8ae3a71281c29d136e05fdf819d55 (patch)
tree9062cd2fa9287a475a1ef11c2b9fabcc67586d7b /bootstrap
parent8d976f36c4623c8b7b0151048ada8e0e7d9401d0 (diff)
downloadpkgsrc-f4b833f7dbd8ae3a71281c29d136e05fdf819d55.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-xbootstrap/bootstrap21
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
: