diff options
author | rillig <rillig> | 2007-06-18 07:33:34 +0000 |
---|---|---|
committer | rillig <rillig> | 2007-06-18 07:33:34 +0000 |
commit | 37a105767ff073148465d29bfbd28f1ac00e4758 (patch) | |
tree | 6feb2d6f87c42c8441bc84753e1a0af65a1db9c9 /mk | |
parent | 388d13ca0fc17a8259697ecc5681c9e732468980 (diff) | |
download | pkgsrc-37a105767ff073148465d29bfbd28f1ac00e4758.tar.gz |
Changed the plain "mkdir" into ${MKDIR}, like in all the other cases.
Apparently, the tools directory isn't in the PATH at the point where
this code is executed.
Fixes PR 35487.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/wrapper/bsd.wrapper.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/wrapper/bsd.wrapper.mk b/mk/wrapper/bsd.wrapper.mk index db3ba9e7672..9e08e9e777f 100644 --- a/mk/wrapper/bsd.wrapper.mk +++ b/mk/wrapper/bsd.wrapper.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.wrapper.mk,v 1.69 2007/06/06 13:20:34 rillig Exp $ +# $NetBSD: bsd.wrapper.mk,v 1.70 2007/06/18 07:33:34 rillig Exp $ # # Copyright (c) 2005 The NetBSD Foundation, Inc. # All rights reserved. @@ -590,7 +590,7 @@ ${_WRAP_BUILDCMD.${_wrappee_}}: ${WRAPPER_SRCDIR}/buildcmd . if !target(${_WRAP_CACHE.${_wrappee_}}) ${_WRAP_CACHE.${_wrappee_}}: - ${RUN} mkdir ${.TARGET:H} + ${RUN} ${MKDIR} ${.TARGET:H} ${RUN} echo "cachehit=no" > ${.TARGET} . endif |