diff options
author | heinz <heinz> | 2005-10-09 20:19:26 +0000 |
---|---|---|
committer | heinz <heinz> | 2005-10-09 20:19:26 +0000 |
commit | 37a2e712ed25bf7988b4d132d92f30368315b1bf (patch) | |
tree | 1026620e5ccdfc9c402228431438841454360fc6 | |
parent | 39a97ade2d15225e8562c925c576244de37ba486 (diff) | |
download | pkgsrc-37a2e712ed25bf7988b4d132d92f30368315b1bf.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.
-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 |