pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/mk/wrapper Changed the plain "mkdir" into ${MKDIR}, li...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/78779cafe69e
branches:  trunk
changeset: 530197:78779cafe69e
user:      rillig <rillig%pkgsrc.org@localhost>
date:      Mon Jun 18 07:33:34 2007 +0000

description:
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:

 mk/wrapper/bsd.wrapper.mk |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r dfb929a85312 -r 78779cafe69e mk/wrapper/bsd.wrapper.mk
--- a/mk/wrapper/bsd.wrapper.mk Mon Jun 18 07:21:09 2007 +0000
+++ b/mk/wrapper/bsd.wrapper.mk Mon Jun 18 07:33:34 2007 +0000
@@ -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 @@
 
 .  if !target(${_WRAP_CACHE.${_wrappee_}})
 ${_WRAP_CACHE.${_wrappee_}}:
-       ${RUN} mkdir ${.TARGET:H}
+       ${RUN} ${MKDIR} ${.TARGET:H}
        ${RUN} echo "cachehit=no" > ${.TARGET}
 .  endif
 



Home | Main Index | Thread Index | Old Index