diff options
author | heinz <heinz@pkgsrc.org> | 2005-10-09 20:19:26 +0000 |
---|---|---|
committer | heinz <heinz@pkgsrc.org> | 2005-10-09 20:19:26 +0000 |
commit | 435215b6d380763dcf61450845fdc5a98ae7b406 (patch) | |
tree | 1026620e5ccdfc9c402228431438841454360fc6 /mk/tools | |
parent | b53b728d06b65d1ee6a568f6504584b70803add4 (diff) | |
download | pkgsrc-435215b6d380763dcf61450845fdc5a98ae7b406.tar.gz |
The replacement script for UnixWare's buggy "mkdir" command needs the "-p"
switch, like all the other "mkdir" definitions in tools.<platform>.mk.
Diffstat (limited to 'mk/tools')
-rw-r--r-- | mk/tools/bootstrap.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/tools/bootstrap.mk b/mk/tools/bootstrap.mk index 199ec725e85..0e100c5986f 100644 --- a/mk/tools/bootstrap.mk +++ b/mk/tools/bootstrap.mk @@ -1,4 +1,4 @@ -# $NetBSD: bootstrap.mk,v 1.6 2005/09/13 04:24:35 dmcmahill Exp $ +# $NetBSD: bootstrap.mk,v 1.7 2005/10/09 20:19:26 heinz Exp $ # # Copyright (c) 2005 The NetBSD Foundation, Inc. # All rights reserved. @@ -114,7 +114,7 @@ TOOLS_PLATFORM.sed?= ${LOCALBASE}/bin/nbsed TOOLS_PLATFORM.tar?= ${LOCALBASE}/bin/tar .elif ${OPSYS} == "UnixWare" -TOOLS_PLATFORM.mkdir?= ${LOCALBASE}/sbin/mkdir-sh +TOOLS_PLATFORM.mkdir?= ${LOCALBASE}/sbin/mkdir-sh -p TOOLS_PLATFORM.mtree?= ${LOCALBASE}/sbin/mtree TOOLS_PLATFORM.pax?= ${LOCALBASE}/bin/pax TOOLS_PLATFORM.sed?= ${LOCALBASE}/bin/nbsed |