diff options
author | rpaulo <rpaulo@FreeBSD.org> | 2014-06-28 18:53:02 +0000 |
---|---|---|
committer | rpaulo <rpaulo@FreeBSD.org> | 2014-06-28 18:53:02 +0000 |
commit | 2d01bc86fcd8ab7398fdaa0e2563dc2007c39a72 (patch) | |
tree | 6c79c85fe8dbc71d6c70f061a494959de990311b /sys/modules/dtrace | |
parent | c676f789a4def14e6372a7f22f8914be670cb726 (diff) | |
download | FreeBSD-src-2d01bc86fcd8ab7398fdaa0e2563dc2007c39a72.zip FreeBSD-src-2d01bc86fcd8ab7398fdaa0e2563dc2007c39a72.tar.gz |
Move the -I of common/util to the proper place to fix the powerpc build.
MFC after: 2 weeks
Diffstat (limited to 'sys/modules/dtrace')
-rw-r--r-- | sys/modules/dtrace/dtrace/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/modules/dtrace/dtrace/Makefile b/sys/modules/dtrace/dtrace/Makefile index f814362..651cf17 100644 --- a/sys/modules/dtrace/dtrace/Makefile +++ b/sys/modules/dtrace/dtrace/Makefile @@ -22,8 +22,7 @@ SRCS= dtrace.c \ SRCS+= dis_tables.c \ instr_size.c CFLAGS+= -I${SYSDIR}/cddl/contrib/opensolaris/uts/intel \ - -I${SYSDIR}/cddl/dev/dtrace/x86 \ - -I${SUNW}/common/util + -I${SYSDIR}/cddl/dev/dtrace/x86 .endif SRCS+= bus_if.h device_if.h vnode_if.h @@ -45,6 +44,7 @@ CFLAGS+= -I${SYSDIR}/cddl/compat/opensolaris \ -I${SYSDIR}/cddl/dev/dtrace \ -I${SYSDIR}/cddl/dev/dtrace/${ARCHDIR} \ -I${SYSDIR}/cddl/contrib/opensolaris/uts/common \ + -I${SUNW}/common/util \ -I${SYSDIR} -DDIS_MEM CFLAGS+= -DSMP |