From owner-freebsd-ports-bugs@FreeBSD.ORG Fri May 20 23:00:24 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C78C1106566B for ; Fri, 20 May 2011 23:00:24 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 98E068FC13 for ; Fri, 20 May 2011 23:00:24 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p4KN0OLx091713 for ; Fri, 20 May 2011 23:00:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p4KN0OIW091696; Fri, 20 May 2011 23:00:24 GMT (envelope-from gnats) Date: Fri, 20 May 2011 23:00:24 GMT Message-Id: <201105202300.p4KN0OIW091696@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Alexander Cc: Subject: Re: ports/157223: Fix p5-ExtUtils-MakeMaker for Perl5.14 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Alexander List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 May 2011 23:00:24 -0000 The following reply was made to PR ports/157223; it has been noted by GNATS. From: Alexander To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/157223: Fix p5-ExtUtils-MakeMaker for Perl5.14 Date: Sat, 21 May 2011 00:42:03 +0200 This message is in MIME format. --=_30qe2ai20xw Content-Type: text/plain; charset=ISO-8859-2; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: 7bit I too should be using ${REINPLACE_CMD}! ----- Message from FreeBSD-gnats-submit@FreeBSD.org --------- Date: Fri, 20 May 2011 22:30:06 GMT From: FreeBSD-gnats-submit@FreeBSD.org Reply-To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/157223: Fix p5-ExtUtils-MakeMaker for Perl5.14 To: freebsd@nagilum.org > Thank you very much for your problem report. > It has the internal identification `ports/157223'. > The individual assigned to look at your > report is: freebsd-ports-bugs. > > You can access the state of your problem report at any time > via this link: > > http://www.freebsd.org/cgi/query-pr.cgi?pr=157223 > >> Category: ports >> Responsible: freebsd-ports-bugs >> Synopsis: Fix p5-ExtUtils-MakeMaker for Perl5.14 >> Arrival-Date: Fri May 20 22:30:05 UTC 2011 > ----- End message from FreeBSD-gnats-submit@FreeBSD.org ----- ---------------------------------------------------------------- cakebox.homeunix.net - all the machine one needs.. --=_30qe2ai20xw Content-Type: text/x-patch; charset=UTF-8; name="p5-ExtUtils-MakeMaker.patch" Content-Disposition: attachment; filename="p5-ExtUtils-MakeMaker.patch" Content-Transfer-Encoding: 7bit diff -Naur p5-ExtUtils-MakeMaker.orig/Makefile p5-ExtUtils-MakeMaker/Makefile --- p5-ExtUtils-MakeMaker.orig/Makefile 2010-01-06 15:16:33.000000000 +0100 +++ p5-ExtUtils-MakeMaker/Makefile 2011-05-21 00:39:18.000000000 +0200 @@ -32,5 +32,8 @@ post-patch: @${REINPLACE_CMD} -e '/EXE_FILES/d' ${WRKSRC}/Makefile.PL + if [ ! -e ${PREFIX}/lib/perl5/${PERL_VERSION}/mach/CORE/cc_runtime.h ];\ + then @${REINPLACE_CMD} -e '/cc_runtime.h/d' ${WRKSRC}/lib/ExtUtils/MM_Unix.pm ;\ + fi .include --=_30qe2ai20xw--