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 | dd8790a04957d3e23766941c57974e1df1b8d0ac (patch) | |
tree | 1026620e5ccdfc9c402228431438841454360fc6 /mk | |
parent | 2961fd517d253d19e7968f0904a419ba592d4ef0 (diff) | |
download | pkgsrc-dd8790a04957d3e23766941c57974e1df1b8d0ac.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')
-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 |