Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 22 Dec 2007 04:36:10 GMT
From:      John Birrell <jb@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 131412 for review
Message-ID:  <200712220436.lBM4aA8X015929@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=131412

Change 131412 by jb@jb_freebsd1 on 2007/12/22 04:35:46

	Add the include paths to the machine-dependent code and the
	generic backend. We include them rather than compile them separately
	so that if/when the module is built into a static kernel, the
	variables aren't global.

Affected files ...

.. //depot/projects/dtrace/src/sys/modules/cyclic/Makefile#5 edit

Differences ...

==== //depot/projects/dtrace/src/sys/modules/cyclic/Makefile#5 (text+ko) ====

@@ -10,9 +10,11 @@
 		
 SRCS+=		bus_if.h device_if.h vnode_if.h
 
-CFLAGS+=	-I${.CURDIR}/../../compat/opensolaris \
-		-I${.CURDIR}/../../contrib/opensolaris/uts/common \
-		-I${.CURDIR}/../..
+CFLAGS+=	-I${.CURDIR}/../../compat/opensolaris			\
+		-I${.CURDIR}/../../contrib/opensolaris/uts/common	\
+		-I${.CURDIR}/../..					\
+		-I${.CURDIR}/../../cddl/kern				\
+		-I${.CURDIR}/../../cddl/${MACHINE_ARCH}
 
 CFLAGS+=	-DDEBUG=1
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200712220436.lBM4aA8X015929>