pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/mk/wrapper Fixed an obvious typo: .if !target$(${_WRAP...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/c1b7867dbdb4
branches:  trunk
changeset: 515377:c1b7867dbdb4
user:      rillig <rillig%pkgsrc.org@localhost>
date:      Sun Jul 02 09:45:23 2006 +0000

description:
Fixed an obvious typo: .if !target$(${_WRAP_EMPTY_FILE}) contains a
dollar character before the opening parenthesis. This should really have
been detected by bmake, but somehow the parser seems to be tolerant with
respect to syntax errors.

diffstat:

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

diffs (18 lines):

diff -r ce765a340c93 -r c1b7867dbdb4 mk/wrapper/bsd.wrapper.mk
--- a/mk/wrapper/bsd.wrapper.mk Sun Jul 02 09:40:37 2006 +0000
+++ b/mk/wrapper/bsd.wrapper.mk Sun Jul 02 09:45:23 2006 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: bsd.wrapper.mk,v 1.40 2006/01/16 23:35:29 wiz Exp $
+# $NetBSD: bsd.wrapper.mk,v 1.41 2006/07/02 09:45:23 rillig Exp $
 #
 # Copyright (c) 2005 The NetBSD Foundation, Inc.
 # All rights reserved.
@@ -657,7 +657,7 @@
 .endif
 
 .for _wrappee_ in ${_WRAPPEES}
-.  if !target$(${_WRAP_EMPTY_FILE})
+.  if !target(${_WRAP_EMPTY_FILE})
 ${_WRAP_EMPTY_FILE}:
        ${_PKG_SILENT}${_PKG_DEBUG}${MKDIR} ${.TARGET:H}
        ${_PKG_SILENT}${_PKG_DEBUG}${TOUCH} ${TOUCH_ARGS} ${.TARGET}



Home | Main Index | Thread Index | Old Index