Date: Wed, 17 Jun 2015 20:04:14 +0000 (UTC) From: Dmitry Marakasov <amdmi3@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r389992 - head/www/axis2 Message-ID: <201506172004.t5HK4Ebx000911@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201506172004.t5HK4Ebx000911>