Module Name:    src
Committed By:   pooka
Date:           Tue Sep 22 09:57:16 UTC 2009

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

Log Message:
Don't build spcopy for rumpkern.  Fixes hp700 build failure pointed
out by nick.

XXX: spcopy should be in the main kernel instead of libkern in any case


To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/sys/lib/libkern/arch/hppa/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/hppa/Makefile.inc
diff -u src/sys/lib/libkern/arch/hppa/Makefile.inc:1.10 src/sys/lib/libkern/arch/hppa/Makefile.inc:1.11
--- src/sys/lib/libkern/arch/hppa/Makefile.inc:1.10	Fri Aug 14 19:23:53 2009
+++ src/sys/lib/libkern/arch/hppa/Makefile.inc	Tue Sep 22 09:57:16 2009
@@ -1,7 +1,12 @@
-#	$NetBSD: Makefile.inc,v 1.10 2009/08/14 19:23:53 dsl Exp $
+#	$NetBSD: Makefile.inc,v 1.11 2009/09/22 09:57:16 pooka Exp $
 
 SRCS+=	milli.S
-SRCS+=	bcopy.S spcopy.S memcpy.S memmove.S
+SRCS+=	bcopy.S memcpy.S memmove.S
+
+# XXX: spcopy does not really belong in libkern in the first place
+.ifndef RUMPKERNEL
+SRCS+=	spcopy.S
+.endif
 
 SRCS+= ashrdi3.c divdi3.c    
 SRCS+= ffs.c bswap16.c bswap32.c

Reply via email to