Module Name: src
Committed By: pooka
Date: Tue Feb 9 16:16:26 UTC 2010
Modified Files:
src/sys/rump: Makefile.rump
Log Message:
IOCONFIG comes from .CURDIR
To generate a diff of this commit:
cvs rdiff -u -r1.48 -r1.49 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/sys/rump/Makefile.rump
diff -u src/sys/rump/Makefile.rump:1.48 src/sys/rump/Makefile.rump:1.49
--- src/sys/rump/Makefile.rump:1.48 Wed Feb 3 21:15:39 2010
+++ src/sys/rump/Makefile.rump Tue Feb 9 16:16:26 2010
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.rump,v 1.48 2010/02/03 21:15:39 pooka Exp $
+# $NetBSD: Makefile.rump,v 1.49 2010/02/09 16:16:26 pooka Exp $
#
WARNS?= 3 # XXX: src/sys won't compile with -Wsign-compare yet
@@ -105,7 +105,7 @@
# This is useful mainly for devices.
.if !empty(IOCONFIG)
ioconf.c: ${IOCONFIG}
- ${TOOL_CONFIG} -b ${.OBJDIR} -s ${RUMPTOP}/.. ${IOCONFIG}
+ ${TOOL_CONFIG} -b ${.OBJDIR} -s ${RUMPTOP}/.. ${.CURDIR}/${IOCONFIG}
# config doesn't change the files if they're unchanged. however,
# here we want to satisfy our make dependency, so force a
# timestamp update