diff options
author | phk <phk@FreeBSD.org> | 1995-10-15 16:56:56 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1995-10-15 16:56:56 +0000 |
commit | 380fa2c5386b9976a6400ba3e27750d41cc2de46 (patch) | |
tree | ee0eab253e864a6571de70cd343e1562114d9a53 /share/mk/bsd.kmod.mk | |
parent | 207b9d36cc4b665e68c9d6baa17cd6547e87dbbd (diff) | |
download | FreeBSD-src-380fa2c5386b9976a6400ba3e27750d41cc2de46.zip FreeBSD-src-380fa2c5386b9976a6400ba3e27750d41cc2de46.tar.gz |
An even better idea: The default will be that on _${KMOD} (_nfs_mod...) will
be exported. This breaks the compilation of some lkms, the owners of which
is kindly requested to consider what should be exported.
Diffstat (limited to 'share/mk/bsd.kmod.mk')
-rw-r--r-- | share/mk/bsd.kmod.mk | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/share/mk/bsd.kmod.mk b/share/mk/bsd.kmod.mk index 9f011d1..2232232 100644 --- a/share/mk/bsd.kmod.mk +++ b/share/mk/bsd.kmod.mk @@ -1,5 +1,5 @@ # From: @(#)bsd.prog.mk 5.26 (Berkeley) 6/25/91 -# $Id: bsd.kmod.mk,v 1.13 1995/10/15 14:32:26 phk Exp $ +# $Id: bsd.kmod.mk,v 1.14 1995/10/15 16:46:00 phk Exp $ .if exists(${.CURDIR}/../Makefile.inc) .include "${.CURDIR}/../Makefile.inc" @@ -18,10 +18,11 @@ KMODGRP?= bin KMODOWN?= bin KMODMODE?= 555 +EXPORT_SYMS?= _${KMOD} + .if defined(VFS_LKM) CFLAGS+= -DVFS_LKM -DMODVNOPS=${KMOD}vnops -I. SRCS+= vnode_if.h -EXPORT_SYMS+= _${KMOD} CLEANFILES+= vnode_if.h vnode_if.c .endif |