summaryrefslogtreecommitdiff
path: root/security/skip/Makefile
diff options
context:
space:
mode:
authorArchie Cobbs <archie@FreeBSD.org>1999-07-31 21:48:34 +0000
committerArchie Cobbs <archie@FreeBSD.org>1999-07-31 21:48:34 +0000
commitba9bf34b8b54ae46a2dc9e6c6eb531fde08bd7a0 (patch)
treecb31fc0dc2502d14458b697bfb70e36885fa76f6 /security/skip/Makefile
parentUpdate to patchlevel 10. (diff)
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>
Notes
Notes: svn path=/head/; revision=20412
Diffstat (limited to '')
-rw-r--r--security/skip/Makefile10
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>