diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1998-12-01 08:31:44 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1998-12-01 08:31:44 +0000 |
commit | 91d180e5ff9860795a7cf13f4a0effe292cd1053 (patch) | |
tree | f1dc7a354a146a36c0657aea401570c1e0ae94b4 /net/arla | |
parent | Move Makefile.inc to ${FILESDIR}, copy it to ${WRKSRC} during extract (diff) |
Don't attempt to build if kernel source is missing.
Notes
Notes:
svn path=/head/; revision=14984
Diffstat (limited to 'net/arla')
-rw-r--r-- | net/arla/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/net/arla/Makefile b/net/arla/Makefile index 760e21204ceb..27690172fe1c 100644 --- a/net/arla/Makefile +++ b/net/arla/Makefile @@ -3,7 +3,7 @@ # Date created: 09 Sep 1998 # Whom: Peter Hawkins <thepish@FreeBSD.ORG> # -# $Id: Makefile,v 1.2 1998/09/15 04:27:31 asami Exp $ +# $Id: Makefile,v 1.3 1998/09/15 04:28:20 asami Exp $ # DISTNAME= arla-0.9 @@ -14,6 +14,10 @@ MAINTAINER= thepish@freebsd.org #BUILD_DEPENDS= /usr/lib/libkafs.a:/usr/src/kerberosIV/lib/libkafs +.if !exists(/usr/src/sys/kern/vnode_if.src) +BROKEN= requires kernel source +.endif + GNU_CONFIGURE= yes .include <bsd.port.mk> |