diff options
author | asami <asami@FreeBSD.org> | 1998-11-11 05:37:39 +0000 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1998-11-11 05:37:39 +0000 |
commit | 559e1bc28bd975c38b561de15be3918ba1f71b5e (patch) | |
tree | cda169bf1e41b7166c2d2febd3d858c1411d0e64 /net/mpich2 | |
parent | 7aed28166a84f266be861367fc9a1add43f9219a (diff) | |
download | FreeBSD-ports-559e1bc28bd975c38b561de15be3918ba1f71b5e.zip FreeBSD-ports-559e1bc28bd975c38b561de15be3918ba1f71b5e.tar.gz |
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.)
Diffstat (limited to 'net/mpich2')
-rw-r--r-- | net/mpich2/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/net/mpich2/Makefile b/net/mpich2/Makefile index 25f3b1d..3e6496d 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> |