Source-Changes-HG archive

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

[src/trunk]: src/tools Correct .PHONY rules that force tools to be installed ...



details:   https://anonhg.NetBSD.org/src/rev/f25c879e9053
branches:  trunk
changeset: 555410:f25c879e9053
user:      dsl <dsl%NetBSD.org@localhost>
date:      Sun Nov 16 18:06:01 2003 +0000

description:
Correct .PHONY rules that force tools to be installed to use
'.if ${MKUPDATE} == "no"' instead of '.if !defined(UPDATE)'.

diffstat:

 tools/Makefile.host |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r f420eee5ed3b -r f25c879e9053 tools/Makefile.host
--- a/tools/Makefile.host       Sun Nov 16 16:29:04 2003 +0000
+++ b/tools/Makefile.host       Sun Nov 16 18:06:01 2003 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile.host,v 1.22 2003/10/21 10:01:22 lukem Exp $
+#      $NetBSD: Makefile.host,v 1.23 2003/11/16 18:06:01 dsl Exp $
 
 NOLINT=                # defined
 NOMAN=         # defined
@@ -56,7 +56,7 @@
        mkdir -p ${HOST_BINDIR}
        ${HOST_INSTALL_FILE} -m ${BINMODE} ${HOSTPROG}${HOSTEXEEXT} ${.TARGET}
 
-.if !defined(UPDATE)
+.if ${MKUPDATE} == "no"
 .PHONY:                ${HOST_BINDIR}/${HOSTPROGNAME}
 .endif
 
@@ -68,7 +68,7 @@
        mkdir -p ${HOST_FILESDIR}
        ${HOST_INSTALL_FILE} -m ${NONBINMODE} ${.ALLSRC} ${.TARGET}
 
-.if !defined(UPDATE)
+.if ${MKUPDATE} == "no"
 .PHONY:                ${HOST_FILESDIR}/${F}
 .endif
 .endfor



Home | Main Index | Thread Index | Old Index