diff options
author | Lars Engels <lme@FreeBSD.org> | 2018-01-23 16:04:24 +0000 |
---|---|---|
committer | Lars Engels <lme@FreeBSD.org> | 2018-01-23 16:04:24 +0000 |
commit | 65051ea30f374a505f6fbeec2cd1c2357df9b52a (patch) | |
tree | b4ab1a92752521d35320c38e2ff34857b56703cd /net-mgmt | |
parent | net/ipxe: Update to latest commit (diff) |
net-mgmt/icingaweb2
Use "-delete" argument to find instead of calling rm(1).
This was already done for the MFH.
Suggested by: mat
Notes
Notes:
svn path=/head/; revision=459785
Diffstat (limited to 'net-mgmt')
-rw-r--r-- | net-mgmt/icingaweb2/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net-mgmt/icingaweb2/Makefile b/net-mgmt/icingaweb2/Makefile index 7fb2c83463fe..08b0fc6561f3 100644 --- a/net-mgmt/icingaweb2/Makefile +++ b/net-mgmt/icingaweb2/Makefile @@ -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}) |