Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 18 Aug 2013 08:26:13 +0000 (UTC)
From:      Andrej Zverev <az@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r324892 - head/www/p5-Catalyst-Plugin-Prototype
Message-ID:  <201308180826.r7I8QD2h076492@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: az
Date: Sun Aug 18 08:26:13 2013
New Revision: 324892
URL: http://svnweb.freebsd.org/changeset/ports/324892

Log:
  - Try to fix on FreeBSD 10 by replacing rm with find -delete.
    By some accident libarchive on fbsd 10 can't see file like ._Prototype.pm

Modified:
  head/www/p5-Catalyst-Plugin-Prototype/Makefile

Modified: head/www/p5-Catalyst-Plugin-Prototype/Makefile
==============================================================================
--- head/www/p5-Catalyst-Plugin-Prototype/Makefile	Sun Aug 18 08:03:43 2013	(r324891)
+++ head/www/p5-Catalyst-Plugin-Prototype/Makefile	Sun Aug 18 08:26:13 2013	(r324892)
@@ -24,6 +24,6 @@ MAN3=	Catalyst::Helper::Prototype.3 \
 	Catalyst::Plugin::Prototype.3
 
 post-extract:
-	${RM} ${WRKSRC}/lib/Catalyst/Plugin/._Prototype.pm
+	@${FIND} ${WRKSRC} -name '._Prototype.pm' -delete
 
 .include <bsd.port.mk>



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