svn commit: r459785 - head/net-mgmt/icingaweb2

Lars Engels lme at FreeBSD.org
Tue Jan 23 16:04:25 UTC 2018


Author: lme
Date: Tue Jan 23 16:04:24 2018
New Revision: 459785
URL: https://svnweb.freebsd.org/changeset/ports/459785

Log:
  net-mgmt/icingaweb2
  
  Use "-delete" argument to find instead of calling rm(1).
  This was already done for the MFH.
  
  Suggested by:	mat

Modified:
  head/net-mgmt/icingaweb2/Makefile

Modified: head/net-mgmt/icingaweb2/Makefile
==============================================================================
--- head/net-mgmt/icingaweb2/Makefile	Tue Jan 23 16:02:52 2018	(r459784)
+++ head/net-mgmt/icingaweb2/Makefile	Tue Jan 23 16:04:24 2018	(r459785)
@@ -53,7 +53,7 @@ do-install:
 		${STAGEDIR}${EXAMPLESDIR}/bash_completion.d
 	(cd ${WRKSRC} && ${RM} -r .mailmap changelog.py icingaweb2.spec \
 		bin/license_writer.py packages test)
-	(${FIND} ${WRKSRC} -name "*.bak" -exec rm {} +)
+	(${FIND} ${WRKSRC} -name "*.bak" -delete)
 	${MKDIR} ${STAGEDIR}${WWWDIR}
 	(cd ${WRKSRC} && \
 		${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR})


More information about the svn-ports-all mailing list