diff options
author | amdmi3 <amdmi3@FreeBSD.org> | 2015-06-18 04:04:13 +0800 |
---|---|---|
committer | amdmi3 <amdmi3@FreeBSD.org> | 2015-06-18 04:04:13 +0800 |
commit | 091e774e9b7d51a7e5c4bc078b9b224afd611bb4 (patch) | |
tree | 7bc58f887f175af4923a0d1b106e218e1ab09f41 /www/axis2 | |
parent | 71b355a87f0a928afa5dc4c78d950306401f993c (diff) | |
download | freebsd-ports-gnome-091e774e9b7d51a7e5c4bc078b9b224afd611bb4.tar.gz freebsd-ports-gnome-091e774e9b7d51a7e5c4bc078b9b224afd611bb4.tar.zst freebsd-ports-gnome-091e774e9b7d51a7e5c4bc078b9b224afd611bb4.zip |
- Fix build on pre-10.x after previous commit
Diffstat (limited to 'www/axis2')
-rw-r--r-- | www/axis2/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/axis2/Makefile b/www/axis2/Makefile index 506989a61537..a73b83922282 100644 --- a/www/axis2/Makefile +++ b/www/axis2/Makefile @@ -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 |