Source-Changes-HG archive

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

[src/trunk]: src/sys/conf fix the MAKEVERBOSE messages to be consistent with ...



details:   https://anonhg.NetBSD.org/src/rev/87cf87d6d62f
branches:  trunk
changeset: 555899:87cf87d6d62f
user:      lukem <lukem%NetBSD.org@localhost>
date:      Thu Dec 04 02:33:41 2003 +0000

description:
fix the MAKEVERBOSE messages to be consistent with the standard ones

diffstat:

 sys/conf/Makefile.kern.inc |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (28 lines):

diff -r 961476c39b32 -r 87cf87d6d62f sys/conf/Makefile.kern.inc
--- a/sys/conf/Makefile.kern.inc        Thu Dec 04 02:00:07 2003 +0000
+++ b/sys/conf/Makefile.kern.inc        Thu Dec 04 02:33:41 2003 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile.kern.inc,v 1.50 2003/12/01 01:12:58 lukem Exp $
+#      $NetBSD: Makefile.kern.inc,v 1.51 2003/12/04 02:33:41 lukem Exp $
 #
 # This file contains common `MI' targets and definitions and it is included
 # at the bottom of each `MD' ${MACHINE}/conf/Makefile.${MACHINE}.
@@ -90,15 +90,15 @@
 
 # compile rules: rules are named ${TYPE}_${SUFFIX} where TYPE is NORMAL or
 # NOPROF and SUFFIX is the file suffix, capitalized (e.g. C for a .c file).
-NORMAL_C?=     @${_MKSHMSG} "compile ${.CURDIR:T}/${.TARGET}"; \
+NORMAL_C?=     @${_MKSHMSG} "compile  ${.CURDIR:T}/${.TARGET}"; \
                ${_MKSHECHO}\
                ${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c $<; \
                ${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c $<
-NOPROF_C?=     @${_MKSHMSG} "compile ${.CURDIR:T}/${.TARGET}"; \
+NOPROF_C?=     @${_MKSHMSG} "compile  ${.CURDIR:T}/${.TARGET}"; \
                ${_MKSHECHO}\
                ${CC} ${CFLAGS} ${CPPFLAGS} -c $<; \
                ${CC} ${CFLAGS} ${CPPFLAGS} -c $<
-NORMAL_S?=     @${_MKSHMSG} "compile ${.CURDIR:T}/${.TARGET}"; \
+NORMAL_S?=     @${_MKSHMSG} "compile  ${.CURDIR:T}/${.TARGET}"; \
                ${_MKSHECHO}\
                ${CC} ${AFLAGS} ${CPPFLAGS} -c $<; \
                ${CC} ${AFLAGS} ${CPPFLAGS} -c $<



Home | Main Index | Thread Index | Old Index