Module Name: src
Committed By: martin
Date: Sat Dec 13 19:23:10 UTC 2014
Modified Files:
src/sys/conf [netbsd-7]: Makefile.kern.inc
Log Message:
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};
To generate a diff of this commit:
cvs rdiff -u -r1.169 -r1.169.2.1 src/sys/conf/Makefile.kern.inc
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/conf/Makefile.kern.inc
diff -u src/sys/conf/Makefile.kern.inc:1.169 src/sys/conf/Makefile.kern.inc:1.169.2.1
--- src/sys/conf/Makefile.kern.inc:1.169 Fri Aug 8 14:42:58 2014
+++ src/sys/conf/Makefile.kern.inc Sat Dec 13 19:23:09 2014
@@ -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?=true
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?=; \