summaryrefslogtreecommitdiff
path: root/net/mpich2/Makefile
diff options
context:
space:
mode:
authorSatoshi Asami <asami@FreeBSD.org>1998-11-11 05:37:39 +0000
committerSatoshi Asami <asami@FreeBSD.org>1998-11-11 05:37:39 +0000
commitdbc8aa6cc1cb1abadce30cfe133c7a5c2ed2f34b (patch)
treedeebef625a152490a0bbcb7e5602d05a59b1c010 /net/mpich2/Makefile
parentMake 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 'net/mpich2/Makefile')
-rw-r--r--net/mpich2/Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/net/mpich2/Makefile b/net/mpich2/Makefile
index 25f3b1d599cd..3e6496d35961 100644
--- a/net/mpich2/Makefile
+++ b/net/mpich2/Makefile
@@ -3,7 +3,7 @@
# Date created: 2 May 1998
# Whom: dbader@eece.unm.edu
#
-# $Id: Makefile,v 1.4 1998/10/13 23:15:30 jseger Exp $
+# $Id: Makefile,v 1.5 1998/10/13 23:18:37 jseger Exp $
#
DISTNAME= mpich-1.1.1
@@ -12,7 +12,8 @@ MASTER_SITES= ftp://ftp.mcs.anl.gov/pub/mpi/
MAINTAINER= dbader@eece.unm.edu
-OSVERSION!= sysctl -n kern.osreldate
+.include <bsd.port.pre.mk>
+
.if ${OSVERSION} >= 300000
BROKEN= MOUNT_NFS undeclared
.endif
@@ -166,4 +167,4 @@ MAN4= CLOG_Finalize.4 CLOG_Init.4 CLOG_Output.4 \
MPE_Stop_log.4 MPE_TagsEnd.4 MPE_Update.4 MPE_Wtime.4
INSTALL_TARGET= install PREFIX=$(PREFIX)/mpich
-.include <bsd.port.mk>
+.include <bsd.port.post.mk>