CVS commit: src/sys/lib/libkern/arch/mips

2010-01-20 Thread Paul Goyette
Module Name:src
Committed By:   pgoyette
Date:   Wed Jan 20 18:13:40 UTC 2010

Modified Files:
src/sys/lib/libkern/arch/mips: Makefile.inc

Log Message:
Remove kern_assert.c - it's not needed here cuz it's already pulled in
by sys/lib/libkern/Makefile.libkern

OK pooka@


To generate a diff of this commit:
cvs rdiff -u -r1.22 -r1.23 src/sys/lib/libkern/arch/mips/Makefile.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/lib/libkern/arch/mips/Makefile.inc
diff -u src/sys/lib/libkern/arch/mips/Makefile.inc:1.22 src/sys/lib/libkern/arch/mips/Makefile.inc:1.23
--- src/sys/lib/libkern/arch/mips/Makefile.inc:1.22	Wed Jan 20 03:36:26 2010
+++ src/sys/lib/libkern/arch/mips/Makefile.inc	Wed Jan 20 18:13:40 2010
@@ -1,11 +1,11 @@
-#	$NetBSD: Makefile.inc,v 1.22 2010/01/20 03:36:26 pooka Exp $
+#	$NetBSD: Makefile.inc,v 1.23 2010/01/20 18:13:40 pgoyette Exp $
 #
 #	There are likely more that we will notice when we go native
 
 NO_SRCS+= imax.c imin.c lmax.c lmin.c max.c min.c ulmax.c ulmin.c
 NO_SRCS+= __main.c
 
-SRCS+=	kern_assert.c memchr.c memcmp.c random.c scanc.c \
+SRCS+=	memchr.c memcmp.c random.c scanc.c \
 	skpc.c strcat.c strcpy.c strcasecmp.c \
 	strncasecmp.c strncmp.c strncpy.c strtoul.c
 



CVS commit: src/sys/lib/libkern/arch/mips

2010-01-19 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Wed Jan 20 03:36:26 UTC 2010

Modified Files:
src/sys/lib/libkern/arch/mips: Makefile.inc

Log Message:
__assert.c -> kern_assert.c

(I don't fully understand why __assert.c is needed here.  maybe it
can be removed, but I don't have time to do a full set of mips builds
tonight)


To generate a diff of this commit:
cvs rdiff -u -r1.21 -r1.22 src/sys/lib/libkern/arch/mips/Makefile.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/lib/libkern/arch/mips/Makefile.inc
diff -u src/sys/lib/libkern/arch/mips/Makefile.inc:1.21 src/sys/lib/libkern/arch/mips/Makefile.inc:1.22
--- src/sys/lib/libkern/arch/mips/Makefile.inc:1.21	Mon Dec 14 00:48:35 2009
+++ src/sys/lib/libkern/arch/mips/Makefile.inc	Wed Jan 20 03:36:26 2010
@@ -1,11 +1,11 @@
-#	$NetBSD: Makefile.inc,v 1.21 2009/12/14 00:48:35 matt Exp $
+#	$NetBSD: Makefile.inc,v 1.22 2010/01/20 03:36:26 pooka Exp $
 #
 #	There are likely more that we will notice when we go native
 
 NO_SRCS+= imax.c imin.c lmax.c lmin.c max.c min.c ulmax.c ulmin.c
 NO_SRCS+= __main.c
 
-SRCS+=	__assert.c memchr.c memcmp.c random.c scanc.c \
+SRCS+=	kern_assert.c memchr.c memcmp.c random.c scanc.c \
 	skpc.c strcat.c strcpy.c strcasecmp.c \
 	strncasecmp.c strncmp.c strncpy.c strtoul.c