diff options
author | bde <bde@FreeBSD.org> | 1998-02-01 18:12:15 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1998-02-01 18:12:15 +0000 |
commit | 6a99eb78ce363b4c84ab8b4ac92fa3e8a550ec85 (patch) | |
tree | 1b168dec2811e75425c4dafedff60700a9791bbe /sys/modules/ibcs2 | |
parent | 81f0e56cf6f29d0aab4c756546b75a094a98b770 (diff) | |
download | FreeBSD-src-6a99eb78ce363b4c84ab8b4ac92fa3e8a550ec85.zip FreeBSD-src-6a99eb78ce363b4c84ab8b4ac92fa3e8a550ec85.tar.gz |
Don't put "-I." in ${CFLAGS} here. bsd.kmod.mk now puts an absolute
path to the obj directory in ${CFLAGS}. This is actually equivalent
to "-I." since bsd.kmod.mk also puts -I- in ${CFLAGS}.
Diffstat (limited to 'sys/modules/ibcs2')
-rw-r--r-- | sys/modules/ibcs2/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/modules/ibcs2/Makefile b/sys/modules/ibcs2/Makefile index c72f985..c912bf2 100644 --- a/sys/modules/ibcs2/Makefile +++ b/sys/modules/ibcs2/Makefile @@ -1,4 +1,4 @@ -# $Id$ +# $Id: Makefile,v 1.13 1997/02/22 12:47:56 peter Exp $ .PATH: ${.CURDIR}/../../sys/i386/ibcs2 KMOD= ibcs2_mod @@ -9,7 +9,7 @@ SRCS= ibcs2.c ibcs2_errno.c ibcs2_ipc.c ibcs2_stat.c ibcs2_misc.c \ ibcs2_msg.c ibcs2_other.c ibcs2_sysi86.c ibcs2_sysvec.c vnode_if.h MAN8= ibcs2.8 -CFLAGS+= -DLKM -I. -DCOMPAT_IBCS2 +CFLAGS+= -DLKM -DCOMPAT_IBCS2 CLEANFILES+= vnode_if.h vnode_if.c EXPORT_SYMS= _ibcs2_mod _ibcs2_emul_path _ibcs2_svr3_sysvec |