diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1998-11-11 05:37:39 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1998-11-11 05:37:39 +0000 |
commit | dbc8aa6cc1cb1abadce30cfe133c7a5c2ed2f34b (patch) | |
tree | deebef625a152490a0bbcb7e5602d05a59b1c010 /devel/ups-debug/Makefile | |
parent | Make bsd.port.mk includable in two phases. bsd.port.pre.mk defines only (diff) |
Use bsd.port.{pre,post}.mk. Either use them to avoid having to define
something already there (PORTOBJFORMAT, OSVERSION) or move stuff from after
.include <bsd.port.mk> to before.
(This is not by any means the complete list but just the ones I've noticed
recently.)
Notes
Notes:
svn path=/head/; revision=14465
Diffstat (limited to 'devel/ups-debug/Makefile')
-rw-r--r-- | devel/ups-debug/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/devel/ups-debug/Makefile b/devel/ups-debug/Makefile index d2ffaaf70f33..81d1f99dc09b 100644 --- a/devel/ups-debug/Makefile +++ b/devel/ups-debug/Makefile @@ -4,7 +4,7 @@ # Date created: Mon Feb 03, 1997 # Whom: David O'Brien (obrien@FreeBSD.org) # -# $Id: Makefile,v 1.3 1998/08/17 11:22:36 jseger Exp $ +# $Id: Makefile,v 1.5 1998/09/16 20:48:34 obrien Exp $ # DISTNAME= ups-3.32 @@ -19,7 +19,8 @@ PATCH_SITES= http://www.concerto.demon.co.uk/UPS/ MAINTAINER= obrien@FreeBSD.org -OSVERSION!= sysctl -n kern.osreldate +.include <bsd.port.pre.mk> + .if ${OSVERSION} >= 300000 BROKEN= "During build: Libvar_addrs[0] is not constant" .endif @@ -28,4 +29,4 @@ USE_GMAKE= yes ALL_TARGET= ups MAN1= ups.1 -.include <bsd.port.mk> +.include <bsd.port.post.mk> |