svn commit: r389992 - head/www/axis2
Dmitry Marakasov
amdmi3 at FreeBSD.org
Wed Jun 17 20:04:14 UTC 2015
Author: amdmi3
Date: Wed Jun 17 20:04:13 2015
New Revision: 389992
URL: https://svnweb.freebsd.org/changeset/ports/389992
Log:
- Fix build on pre-10.x after previous commit
Modified:
head/www/axis2/Makefile
Modified: head/www/axis2/Makefile
==============================================================================
--- head/www/axis2/Makefile Wed Jun 17 20:00:37 2015 (r389991)
+++ head/www/axis2/Makefile Wed Jun 17 20:04:13 2015 (r389992)
@@ -60,7 +60,7 @@ do-install:
.if ${PORT_OPTIONS:MEXAMPLES}
${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
cd ${WRKSRC}/samples && ${FIND} . -type d -exec ${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/{} \;
- ${FIND} -s ${STAGEDIR}${EXAMPLESDIR} -type d -empty -delete
+ ${FIND} -d ${STAGEDIR}${EXAMPLESDIR} -type d -empty -exec ${RMDIR} {} \;
cd ${WRKSRC}/samples && ${FIND} . -type f -not -name '*.class' -exec ${INSTALL_DATA} {} ${STAGEDIR}${EXAMPLESDIR}/{} \;
.endif
More information about the svn-ports-all
mailing list