diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2004-09-19 02:55:51 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2004-09-19 02:55:51 +0000 |
commit | d610bf888417e28bbc6e278ae652940f6204ebad (patch) | |
tree | dfc743c6fef3d44f5fe2b3d94e9c014d885a487d | |
parent | BROKEN on 5.x: Broken pkg-plist (diff) |
BROKEN on 5.x: Broken by changes to make(1)
Approved by: portmgr (self)
Notes
Notes:
svn path=/head/; revision=118287
-rw-r--r-- | net/openradius/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/net/openradius/Makefile b/net/openradius/Makefile index 29e2123052b3..4ed588a27f1f 100644 --- a/net/openradius/Makefile +++ b/net/openradius/Makefile @@ -22,7 +22,13 @@ CC ?= gcc CXX ?= g++ USE_GMAKE= yes +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 502126 +BROKEN= "Broken by make(1) changes on FreeBSD >= 5.x" +.endif + post-install: @${CAT} ${PKGMESSAGE} -.include <bsd.port.mk> +.include <bsd.port.post.mk> |