diff options
author | peter <peter@FreeBSD.org> | 1998-11-06 16:02:14 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1998-11-06 16:02:14 +0000 |
commit | a9d0ce854ac9bd91544e48752f3799781f561fa0 (patch) | |
tree | 056a9ed015b7fd4cea22eed57036acec0d383d1c /sys/modules/coff | |
parent | 59c08f2e00169e5a81d26d16f00f43b230a253b0 (diff) | |
download | FreeBSD-src-a9d0ce854ac9bd91544e48752f3799781f561fa0.zip FreeBSD-src-a9d0ce854ac9bd91544e48752f3799781f561fa0.tar.gz |
Make this work now; fixing the kstack overflow allows the dependency to
be added to the symbol search order safely.
Diffstat (limited to 'sys/modules/coff')
-rw-r--r-- | sys/modules/coff/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/modules/coff/Makefile b/sys/modules/coff/Makefile index dbfd197..7591585 100644 --- a/sys/modules/coff/Makefile +++ b/sys/modules/coff/Makefile @@ -1,11 +1,11 @@ -# $Id: Makefile,v 1.6 1998/03/12 20:04:38 eivind Exp $ +# $Id: Makefile,v 1.7 1998/10/16 04:30:42 peter Exp $ .PATH: ${.CURDIR}/../../i386/ibcs2 KMOD= ibcs2_coff SRCS= imgact_coff.c vnode_if.h NOMAN= -CLEANFILES+= vnode_if.h vnode_if.c -CFLAGS+= -DCOMPAT_IBCS2 -DEPLKMS=${.OBJDIR}/../ibcs2/ibcs2_mod.o +CLEANFILES+= vnode_if.h vnode_if.c +CFLAGS+= -DCOMPAT_IBCS2 +KMODDEPS= ibcs2 .include <bsd.kmod.mk> |