Fix argument to empty()

Guess none of the fast-running tests exercised the
component being initialized ...
This commit is contained in:
pooka 2015-11-17 01:07:34 +00:00
parent bd3ae4e6bc
commit 35ce72762f
1 changed files with 2 additions and 2 deletions

View File

@ -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 -I${RUMPTOP}/librump/rumpdev
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