Source-Changes-HG archive

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

[src/netbsd-7]: src/sys/conf Pull up following revision(s) (requested by naka...



details:   https://anonhg.NetBSD.org/src/rev/ea9774251741
branches:  netbsd-7
changeset: 798701:ea9774251741
user:      martin <martin%NetBSD.org@localhost>
date:      Sat Dec 13 19:23:09 2014 +0000

description:
Pull up following revision(s) (requested by nakayama in ticket #317):
        sys/conf/Makefile.kern.inc: revision 1.179
Trim " " at the beginning of version string to follow the change
in rev.1.60 of newvers.sh.
-const char sccs[] = "@(#)${fullversion}";
+const char sccs[] = "@(#)" ${fullversion_source};

diffstat:

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

diffs (18 lines):

diff -r e72f541326c9 -r ea9774251741 sys/conf/Makefile.kern.inc
--- a/sys/conf/Makefile.kern.inc        Sat Dec 13 19:13:25 2014 +0000
+++ b/sys/conf/Makefile.kern.inc        Sat Dec 13 19:23:09 2014 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile.kern.inc,v 1.169 2014/08/08 14:42:58 joerg Exp $
+#      $NetBSD: Makefile.kern.inc,v 1.169.2.1 2014/12/13 19:23:09 martin Exp $
 #
 # This file contains common `MI' targets and definitions and it is included
 # at the bottom of each `MD' ${MACHINE}/conf/Makefile.${MACHINE}.
@@ -281,7 +281,7 @@
 SYSTEM_LD_TAIL_DEBUG?=true
 .else
 SYSTEM_LD_TAIL?=@${SYSTEM_LD_TAIL_DBSYM} ; \
-               ${TOOL_SED} '/const char sccs/!d;s/.*@(.)//;s/\\.*//' vers.c; \
+               ${TOOL_SED} '/const char sccs/!d;s/.*@(.)//;s/" "//;s/\\.*//' vers.c; \
                ${SIZE} $@; chmod 755 $@; \
                ${SYSTEM_CTFMERGE}
 SYSTEM_LD_TAIL_DEBUG?=; \



Home | Main Index | Thread Index | Old Index