diff options
author | Mathieu Arnold <mat@FreeBSD.org> | 2016-12-01 11:18:03 +0000 |
---|---|---|
committer | Mathieu Arnold <mat@FreeBSD.org> | 2016-12-01 11:18:03 +0000 |
commit | 8664861b1a575bcf859a90c6fea2b05a1187f1f0 (patch) | |
tree | 33a19b5745c1e5e7cbfa4a5ab2c30f6971177e74 /chinese/wordpress-zh_TW/Makefile | |
parent | Update to version 0.7.1. That version uses unique_ptr which is not (diff) |
Don't quote {} in find -exec calls.
Braces are not shell metacharacters, and they do not need to be quoted.
By the time find parses its arguments and dicovers them, the quoting
will have been removed by the shell anyway.
Sponsored by: Absolight
Notes
Notes:
svn path=/head/; revision=427491
Diffstat (limited to 'chinese/wordpress-zh_TW/Makefile')
-rw-r--r-- | chinese/wordpress-zh_TW/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chinese/wordpress-zh_TW/Makefile b/chinese/wordpress-zh_TW/Makefile index 842ce3a63e21..48d43bd8176b 100644 --- a/chinese/wordpress-zh_TW/Makefile +++ b/chinese/wordpress-zh_TW/Makefile @@ -47,7 +47,7 @@ pre-install: do-install: ${MKDIR} ${STAGEDIR}${WWWDIR}/ ${CP} -R ${WRKSRC}/ ${STAGEDIR}${WWWDIR}/ - ${FIND} ${STAGEDIR}${WWWDIR}/ -type d -exec ${CHMOD} g+w '{}' \; + ${FIND} ${STAGEDIR}${WWWDIR}/ -type d -exec ${CHMOD} g+w {} \; do-install-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR}/ |