diff options
author | archie <archie@FreeBSD.org> | 1999-08-01 05:48:34 +0800 |
---|---|---|
committer | archie <archie@FreeBSD.org> | 1999-08-01 05:48:34 +0800 |
commit | 0767a24b46bf2fde461c715ad626d29f2d278cd3 (patch) | |
tree | deb5614485d1852ed1e9e42b5d14ce20c9c7664a | |
parent | 35d475d97d4abc4523165c3d908b0f1cc3c70f94 (diff) | |
download | freebsd-ports-gnome-0767a24b46bf2fde461c715ad626d29f2d278cd3.tar.gz freebsd-ports-gnome-0767a24b46bf2fde461c715ad626d29f2d278cd3.tar.zst freebsd-ports-gnome-0767a24b46bf2fde461c715ad626d29f2d278cd3.zip |
Only declare this port BROKEN if ${OSVERSION} >= 400006 so that it still
works under -stable.
How to do this suggested by: David O'Brien <obrien@NUXI.com>
-rw-r--r-- | security/skip/Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/security/skip/Makefile b/security/skip/Makefile index cb9890b74c4f..9f7bef930bdc 100644 --- a/security/skip/Makefile +++ b/security/skip/Makefile @@ -3,7 +3,7 @@ # Date created: 26 November 1997 # Whom: Archie L. Cobbs <archie@whistle.com> # -# $Id: Makefile,v 1.7 1999/05/04 23:18:35 steve Exp $ +# $Id: Makefile,v 1.8 1999/07/22 18:37:04 archie Exp $ DISTNAME= skip-1.0 CATEGORIES= security @@ -56,6 +56,10 @@ post-patch: mv $$FILE.new $$FILE; \ done -BROKEN= Needs to be updated wrt. new device registration +.include <bsd.port.pre.mk> -.include <bsd.port.mk> +.if ${OSVERSION} >= 400006 +BROKEN= New character device registration issues +.endif + +.include <bsd.port.post.mk> |