diff options
author | asami <asami@FreeBSD.org> | 1998-12-01 16:31:44 +0800 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1998-12-01 16:31:44 +0800 |
commit | b63246e2561b712912a9c46325496f5f8e7d11b8 (patch) | |
tree | f031ff37afc118e21ad382169e05ddb6cabd43cc /net/arla | |
parent | e267c5027e54c4fb767322bf1126cfab0fd2b0ed (diff) | |
download | freebsd-ports-gnome-b63246e2561b712912a9c46325496f5f8e7d11b8.tar.gz freebsd-ports-gnome-b63246e2561b712912a9c46325496f5f8e7d11b8.tar.zst freebsd-ports-gnome-b63246e2561b712912a9c46325496f5f8e7d11b8.zip |
Don't attempt to build if kernel source is missing.
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> |