aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoraz <az@FreeBSD.org>2013-08-18 16:26:13 +0800
committeraz <az@FreeBSD.org>2013-08-18 16:26:13 +0800
commit24a673be3a16669e380de58f53238f34030b3e97 (patch)
tree3cfe43ad7b3528dacaf33ee14f64e546b5a8aef3
parent7a09669010c0a14a9d806ad55cf4ffef27814624 (diff)
downloadfreebsd-ports-graphics-24a673be3a16669e380de58f53238f34030b3e97.tar.gz
freebsd-ports-graphics-24a673be3a16669e380de58f53238f34030b3e97.tar.zst
freebsd-ports-graphics-24a673be3a16669e380de58f53238f34030b3e97.zip
- 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
-rw-r--r--www/p5-Catalyst-Plugin-Prototype/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/www/p5-Catalyst-Plugin-Prototype/Makefile b/www/p5-Catalyst-Plugin-Prototype/Makefile
index 94eac18e054..4f3f5768e01 100644
--- a/www/p5-Catalyst-Plugin-Prototype/Makefile
+++ b/www/p5-Catalyst-Plugin-Prototype/Makefile
@@ -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>