Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 9 Dec 2013 01:03:03 GMT
From:      John Marino <freebsd@marino.st>
To:        freebsd-gnats-submit@FreeBSD.org
Subject:   ports/184618: math/parmgridgen: [PATCH] unbreak F10 and head
Message-ID:  <201312090103.rB9133Cf074209@oldred.freebsd.org>
Resent-Message-ID: <201312090110.rB91A0QU024537@freefall.freebsd.org>

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

>Number:         184618
>Category:       ports
>Synopsis:       math/parmgridgen: [PATCH] unbreak F10 and head
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Mon Dec 09 01:10:00 UTC 2013
>Closed-Date:
>Last-Modified:
>Originator:     John Marino
>Release:        
>Organization:
>Environment:
>Description:
This port specifies gmake to be used, but the master makefile has "make" hardcoded, which causes bmake to be used instead on F10 and head (unsuccessfully).

Adding this one-line diff to the port's makefile will unbreak the port.
>How-To-Repeat:

>Fix:


Patch attached with submission follows:

--- Makefile.orig	2013-12-09 00:53:05.761868000 +0000
+++ Makefile
@@ -21,6 +21,7 @@ MAKE_JOBS_UNSAFE=	yes
 
 NO_STAGE=	yes
 post-patch:
+		@${REINPLACE_CMD} 's|make|$$(MAKE)|g' ${WRKSRC}/Makefile
 #respect CFLAGS
 .		for f in IMlib Lib Programs
 		    @${REINPLACE_CMD} 's|CFLAGS =|CFLAGS+=|g' ${WRKSRC}/MGridGen/${f}/Makefile


>Release-Note:
>Audit-Trail:
>Unformatted:



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