Module Name:    src
Committed By:   riastradh
Date:           Tue Apr 14 13:32:35 UTC 2015

Modified Files:
        src/sys/rump/dev/lib/librnd: Makefile
        src/sys/rump/librump/rumpkern: Makefile.rumpkern

Log Message:
Fix rump build: rndpseudo_50.c now needed by kernel, not rnd device.


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/sys/rump/dev/lib/librnd/Makefile
cvs rdiff -u -r1.154 -r1.155 src/sys/rump/librump/rumpkern/Makefile.rumpkern

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/rump/dev/lib/librnd/Makefile
diff -u src/sys/rump/dev/lib/librnd/Makefile:1.7 src/sys/rump/dev/lib/librnd/Makefile:1.8
--- src/sys/rump/dev/lib/librnd/Makefile:1.7	Thu Mar 13 01:52:37 2014
+++ src/sys/rump/dev/lib/librnd/Makefile	Tue Apr 14 13:32:34 2015
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.7 2014/03/13 01:52:37 pooka Exp $
+#	$NetBSD: Makefile,v 1.8 2015/04/14 13:32:34 riastradh Exp $
 #
 
 .PATH:	${.CURDIR}/../../../../dev
@@ -9,11 +9,6 @@ SRCS=	rndpseudo.c
 
 SRCS+=	rnd_component.c
 
-# sys/rump/Makefile.rump sets CPPFLAGS+= -DCOMPAT_50=1,
-# so we need rndpseudo_50.c from the compat/common directory.
-.PATH:	${.CURDIR}/../../../../compat/common
-SRCS+=	rndpseudo_50.c
-
 CPPFLAGS+=	-I${RUMPTOP}/librump/rumpvfs
 
 .include <bsd.lib.mk>

Index: src/sys/rump/librump/rumpkern/Makefile.rumpkern
diff -u src/sys/rump/librump/rumpkern/Makefile.rumpkern:1.154 src/sys/rump/librump/rumpkern/Makefile.rumpkern:1.155
--- src/sys/rump/librump/rumpkern/Makefile.rumpkern:1.154	Wed Feb  4 12:48:05 2015
+++ src/sys/rump/librump/rumpkern/Makefile.rumpkern	Tue Apr 14 13:32:34 2015
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile.rumpkern,v 1.154 2015/02/04 12:48:05 pooka Exp $
+#	$NetBSD: Makefile.rumpkern,v 1.155 2015/04/14 13:32:34 riastradh Exp $
 #
 
 .include "${RUMPTOP}/Makefile.rump"
@@ -154,6 +154,7 @@ SRCS+=	cprng_fast.c
 # compat
 SRCS+=	kern_select_50.c
 SRCS+=	kern_time_50.c
+SRCS+=	rndpseudo_50.c
 
 # Set RUMP_UNREAL_ALLOCATORS to "yes" to use memory allocation hypercalls
 # directly instead of the kmem/pool allocators backed by hypercalls.

Reply via email to