diff options
author | obrien <obrien@FreeBSD.org> | 1998-12-02 14:37:33 +0800 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 1998-12-02 14:37:33 +0800 |
commit | 5f64e6583cbdc6d025e1df5cbc5a4d417f4210eb (patch) | |
tree | c9b0cce04cc78e8c55ca861a2c1f75feb4bf5f8b /security | |
parent | b2cbe20800ed8bdccf302ac5e89e7c68a4c4185f (diff) | |
download | freebsd-ports-gnome-5f64e6583cbdc6d025e1df5cbc5a4d417f4210eb.tar.gz freebsd-ports-gnome-5f64e6583cbdc6d025e1df5cbc5a4d417f4210eb.tar.zst freebsd-ports-gnome-5f64e6583cbdc6d025e1df5cbc5a4d417f4210eb.zip |
Need to do a little bsd.port.pre.mk action to avoid a syntax error.
Noticed by: Bill Fenner <fenner@parc.xerox.com>
Diffstat (limited to 'security')
-rw-r--r-- | security/super/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/security/super/Makefile b/security/super/Makefile index 4db960fbf14a..167c215424dc 100644 --- a/security/super/Makefile +++ b/security/super/Makefile @@ -4,7 +4,7 @@ # Date created: Fri Mar 18, 1997 # Whom: David O'Brien (obrien@NUXI.com) # -# $Id: Makefile,v 1.4 1998/12/01 09:50:50 obrien Exp $ +# $Id: Makefile,v 1.5 1998/12/01 10:17:44 obrien Exp $ # DISTNAME= super-3.11.6 @@ -15,7 +15,9 @@ MASTER_SITES= ftp://phobos.caltech.edu/users/will/ \ MAINTAINER= obrien@FreeBSD.org -.if ${OSVERSION} < 300000 +.include <bsd.port.pre.mk> + +.if ${OSVERSION} <= 300000 BROKEN= '/usr/include/prot.h parse error' .endif @@ -33,4 +35,4 @@ post-install: ${INSTALL_MAN} ${WRKSRC}/README ${PREFIX}/share/doc/super .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |