svn commit: r324892 - head/www/p5-Catalyst-Plugin-Prototype
Andrej Zverev
az at FreeBSD.org
Sun Aug 18 08:26:13 UTC 2013
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>
More information about the svn-ports-all
mailing list