Module Name: src
Committed By: pooka
Date: Tue Nov 17 01:07:34 UTC 2015
Modified Files:
src/sys/rump/dev/lib: Makefile.inc
Log Message:
Fix argument to empty()
Guess none of the fast-running tests exercised the
component being initialized ...
To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/sys/rump/dev/lib/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/rump/dev/lib/Makefile.inc
diff -u src/sys/rump/dev/lib/Makefile.inc:1.6 src/sys/rump/dev/lib/Makefile.inc:1.7
--- src/sys/rump/dev/lib/Makefile.inc:1.6 Mon Nov 16 23:27:07 2015
+++ src/sys/rump/dev/lib/Makefile.inc Tue Nov 17 01:07:34 2015
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.inc,v 1.6 2015/11/16 23:27:07 pooka Exp $
+# $NetBSD: Makefile.inc,v 1.7 2015/11/17 01:07:34 pooka Exp $
#
RUMPTOP= ${.CURDIR}/../../..
@@ -6,7 +6,7 @@ CPPFLAGS+= -I${RUMPTOP}/librump/rumpkern
RUMPDEVLIBDIR:= ${.PARSEDIR}
-.if defined(RUMP_COMPONENT) && !empty(${RUMP_COMPONENT:Mioconf})
+.if defined(RUMP_COMPONENT) && !empty(RUMP_COMPONENT:Mioconf)
.PATH: ${RUMPDEVLIBDIR}
SRCS+= component_simple.c
.endif