Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 3 Mar 2004 20:17:59 -0800 (PST)
From:      Mark Linimon <linimon@FreeBSD.org>
To:        FreeBSD-gnats-submit@FreeBSD.org
Cc:        maho@FreeBSD.org
Subject:   ports/63730: [patch] make use of MASTERDIR variable in two ports
Message-ID:  <200403040417.i244HxZ2032356@freefall.freebsd.org>
Resent-Message-ID: <200403040420.i244KGUV032413@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         63730
>Category:       ports
>Synopsis:       [patch] make use of MASTERDIR variable in two ports
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Wed Mar 03 20:20:16 PST 2004
>Closed-Date:
>Last-Modified:
>Originator:     Mark Linimon
>Release:        FreeBSD 4.9-STABLE i386
>Organization:
Lonesome Dove Computing Services
>Environment:
System: FreeBSD freefall.freebsd.org 4.9-STABLE FreeBSD 4.9-STABLE #11: Thu Feb 5 19:43:44 PST 2004 kensmith@freefall.freebsd.org:/c/src/sys/compile/FREEFALL i386
>Description:
	Both math/spooles-mpich and science/mpqc-mpich define the
	MASTERDIR makevar, but then don't take advantage of it.
	This patch fixes that, but otherwise has no effect on
	the ports.  (Yes, it has been compile tested).
>How-To-Repeat:
	(n/a)
>Fix:

Index: math/spooles-mpich/Makefile
===================================================================
RCS file: /mnt/FreeBSD/ncvs/ports/math/spooles-mpich/Makefile,v
retrieving revision 1.2
diff -u -r1.2 Makefile
--- math/spooles-mpich/Makefile	30 Jun 2003 19:11:53 -0000	1.2
+++ math/spooles-mpich/Makefile	4 Mar 2004 04:11:30 -0000
@@ -8,6 +8,6 @@
 MASTERDIR=      ${.CURDIR}/../spooles/
 USE_MPI=	YES
 
-.include "${.CURDIR}/../spooles/Makefile"
+.include "${MASTERDIR}/Makefile"
 
 PKGNAMESUFFIX=  -mpich
Index: science/mpqc-mpich/Makefile
===================================================================
RCS file: /mnt/FreeBSD/ncvs/ports/science/mpqc-mpich/Makefile,v
retrieving revision 1.7
diff -u -r1.7 Makefile
--- science/mpqc-mpich/Makefile	30 Aug 2003 01:40:58 -0000	1.7
+++ science/mpqc-mpich/Makefile	4 Mar 2004 04:11:30 -0000
@@ -9,7 +9,7 @@
 
 PKGNAMESUFFIX=	-mpich
 
-.include "${.CURDIR}/../mpqc/Makefile"
+.include "${MASTERDIR}/Makefile"
 
 BUILD_DEPENDS+=	${LOCALBASE}/mpich/lib/libmpich.a:${PORTSDIR}/net/mpich
 
>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200403040417.i244HxZ2032356>