diff options
author | mat <mat@FreeBSD.org> | 2016-12-01 19:18:03 +0800 |
---|---|---|
committer | mat <mat@FreeBSD.org> | 2016-12-01 19:18:03 +0800 |
commit | 359f486d9eb2765e2538b660686a47ca7f489039 (patch) | |
tree | 33a19b5745c1e5e7cbfa4a5ab2c30f6971177e74 /www/wordpress | |
parent | 16d9767b56dfb66fc3cda0c10604d546bd95003f (diff) | |
download | freebsd-ports-graphics-359f486d9eb2765e2538b660686a47ca7f489039.tar.gz freebsd-ports-graphics-359f486d9eb2765e2538b660686a47ca7f489039.tar.zst freebsd-ports-graphics-359f486d9eb2765e2538b660686a47ca7f489039.zip |
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
Diffstat (limited to 'www/wordpress')
-rw-r--r-- | www/wordpress/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/wordpress/Makefile b/www/wordpress/Makefile index 239ec698a15..1c6b0ce8272 100644 --- a/www/wordpress/Makefile +++ b/www/wordpress/Makefile @@ -47,7 +47,7 @@ pre-install: do-install: ${INSTALL} -d -m 755 ${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 {} \; ${MKDIR} ${STAGEDIR}${DOCSDIR}/ cd ${WRKSRC}/ && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}/ |