diff options
author | darcy <darcy> | 2010-07-03 04:24:14 +0000 |
---|---|---|
committer | darcy <darcy> | 2010-07-03 04:24:14 +0000 |
commit | 98305ce315002e2b17a5d0c55e5ca387409c271d (patch) | |
tree | 1c0c95f78c2afea26e227717e5c6ebeca5509a10 /mk | |
parent | 9b07de0a1f3b066551bd05b30080cbbaacb8568c (diff) | |
download | pkgsrc-98305ce315002e2b17a5d0c55e5ca387409c271d.tar.gz |
The "-p" option is redundant as it is included in the MKDIR variable.
As discussed with joerg@.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/bsd.pkg.update.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/bsd.pkg.update.mk b/mk/bsd.pkg.update.mk index 41328ba47e5..1d0fe46408e 100644 --- a/mk/bsd.pkg.update.mk +++ b/mk/bsd.pkg.update.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.pkg.update.mk,v 1.21 2010/06/15 04:14:26 dholland Exp $ +# $NetBSD: bsd.pkg.update.mk,v 1.22 2010/07/03 04:24:14 darcy Exp $ # # This Makefile fragment is included by bsd.pkg.mk and contains the targets # and variables for "make update". @@ -109,7 +109,7 @@ clean-update: .PHONY: update-dirlist update-dirlist: - ${RUN} ${MKDIR} -p ${WRKDIR} + ${RUN} ${MKDIR} ${WRKDIR} .if defined(PKGLIST) . for __tmp__ in ${PKGLIST} ${RUN} ${ECHO} >>${_DLIST} "${__tmp__}" |