Module Name:    src
Committed By:   pooka
Date:           Fri Aug 30 10:29:06 UTC 2013

Modified Files:
        src: build.sh
        src/sys/rump: Makefile.rump

Log Message:
Rename RUMPTEST_BUILDSH to RUMPKERN_ONLY.  Turns out not building any
POSIX implementations of hypercalls is useful beyond the build.sh test,
such as when building rump kernels for non-POSIX hosts.


To generate a diff of this commit:
cvs rdiff -u -r1.272 -r1.273 src/build.sh
cvs rdiff -u -r1.85 -r1.86 src/sys/rump/Makefile.rump

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

Modified files:

Index: src/build.sh
diff -u src/build.sh:1.272 src/build.sh:1.273
--- src/build.sh:1.272	Tue Aug  6 05:47:58 2013
+++ src/build.sh	Fri Aug 30 10:29:06 2013
@@ -1,5 +1,5 @@
 #! /usr/bin/env sh
-#	$NetBSD: build.sh,v 1.272 2013/08/06 05:47:58 matt Exp $
+#	$NetBSD: build.sh,v 1.273 2013/08/30 10:29:06 pooka Exp $
 #
 # Copyright (c) 2001-2011 The NetBSD Foundation, Inc.
 # All rights reserved.
@@ -1745,7 +1745,7 @@ createmakewrapper()
 	eval cat <<EOF ${makewrapout}
 #! ${HOST_SH}
 # Set proper variables to allow easy "make" building of a NetBSD subtree.
-# Generated from:  \$NetBSD: build.sh,v 1.272 2013/08/06 05:47:58 matt Exp $
+# Generated from:  \$NetBSD: build.sh,v 1.273 2013/08/30 10:29:06 pooka Exp $
 # with these arguments: ${_args}
 #
 
@@ -1973,7 +1973,7 @@ dorump()
 	[ "${1}" != "rumptest" ] && bomb 'build.sh rump not yet functional. ' \
 	    'did you mean "rumptest"?'
 
-	export RUMPTEST_BUILDSH=1
+	export RUMPKERN_ONLY=1
 	# create obj and distrib dirs
 	if [ "${MKOBJDIRS}" != "no" ]; then
 		make_in_dir "${NETBSDSRCDIR}/etc/mtree" obj

Index: src/sys/rump/Makefile.rump
diff -u src/sys/rump/Makefile.rump:1.85 src/sys/rump/Makefile.rump:1.86
--- src/sys/rump/Makefile.rump:1.85	Mon Aug  5 16:00:57 2013
+++ src/sys/rump/Makefile.rump	Fri Aug 30 10:29:06 2013
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile.rump,v 1.85 2013/08/05 16:00:57 joerg Exp $
+#	$NetBSD: Makefile.rump,v 1.86 2013/08/30 10:29:06 pooka Exp $
 #
 
 WARNS?=		3	# XXX: src/sys won't compile with -Wsign-compare yet
@@ -88,7 +88,7 @@ DPSRCS+=	${RUMPTOP}/Makefile.rump
 
 # XXX: Warning flags are not in CWARNFLAGS.  Manually add a few important ones.
 
-.ifdef RUMPCOMP_USER && !defined(RUMPTEST_BUILDSH)
+.ifdef RUMPCOMP_USER && !defined(RUMPKERN_ONLY)
 .if empty(DESTDIR)
 DESTDIR=/
 .endif

Reply via email to