diff options
author | maho <maho@FreeBSD.org> | 2004-03-08 06:46:42 +0800 |
---|---|---|
committer | maho <maho@FreeBSD.org> | 2004-03-08 06:46:42 +0800 |
commit | ea331ada8af8efe5e859b052a68c9ef2ec2b5538 (patch) | |
tree | 50bc9429041a0eea628824ebccda35fd25812353 | |
parent | d5a137decf0a9f2d424e4ebfb228e66748e8ed63 (diff) | |
download | freebsd-ports-gnome-ea331ada8af8efe5e859b052a68c9ef2ec2b5538.tar.gz freebsd-ports-gnome-ea331ada8af8efe5e859b052a68c9ef2ec2b5538.tar.zst freebsd-ports-gnome-ea331ada8af8efe5e859b052a68c9ef2ec2b5538.zip |
USE MASTERDIR when include Makefile
PR: 63730
Submitted by: Mark Linimon <linimon@FreeBSD.org>
Suggestion by: Masafumi Otsune <info@otsune.com>
-rw-r--r-- | math/spooles-mpich/Makefile | 2 | ||||
-rw-r--r-- | science/mpqc-mpich/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/math/spooles-mpich/Makefile b/math/spooles-mpich/Makefile index 52b5dff147ce..88f5b32716fb 100644 --- a/math/spooles-mpich/Makefile +++ b/math/spooles-mpich/Makefile @@ -8,6 +8,6 @@ MASTERDIR= ${.CURDIR}/../spooles/ USE_MPI= YES -.include "${.CURDIR}/../spooles/Makefile" +.include "${MASTERDIR}/spooles/Makefile" PKGNAMESUFFIX= -mpich diff --git a/science/mpqc-mpich/Makefile b/science/mpqc-mpich/Makefile index ad8b3f23c932..f701123dfc2d 100644 --- a/science/mpqc-mpich/Makefile +++ b/science/mpqc-mpich/Makefile @@ -9,7 +9,7 @@ MASTERDIR= ${.CURDIR}/../mpqc/ PKGNAMESUFFIX= -mpich -.include "${.CURDIR}/../mpqc/Makefile" +.include "${MASTERDIR}/Makefile" BUILD_DEPENDS+= ${LOCALBASE}/mpich/lib/libmpich.a:${PORTSDIR}/net/mpich |