diff options
author | mat <mat@FreeBSD.org> | 2016-12-01 11:18:03 +0000 |
---|---|---|
committer | mat <mat@FreeBSD.org> | 2016-12-01 11:18:03 +0000 |
commit | 359f486d9eb2765e2538b660686a47ca7f489039 (patch) | |
tree | 33a19b5745c1e5e7cbfa4a5ab2c30f6971177e74 /www/npm/Makefile | |
parent | 16d9767b56dfb66fc3cda0c10604d546bd95003f (diff) | |
download | FreeBSD-ports-359f486d9eb2765e2538b660686a47ca7f489039.zip FreeBSD-ports-359f486d9eb2765e2538b660686a47ca7f489039.tar.gz |
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/npm/Makefile')
-rw-r--r-- | www/npm/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/www/npm/Makefile b/www/npm/Makefile index a4f8be5..a155dc9 100644 --- a/www/npm/Makefile +++ b/www/npm/Makefile @@ -83,9 +83,9 @@ maketar: do-clean @${REINPLACE_CMD} -e '1 s|#!/bin/bash|#!${LOCALBASE}/bin/bash|; s|${MAKE}|${GMAKE}|g; s|perl -pi|perl -p|' ${MS_WRKSRC}/${MS_DISTNAME}/scripts/doc-build.sh @${GREP} -lr share/man ${MS_WRKSRC}/${MS_DISTNAME}/doc/ ${MS_WRKSRC}/${MS_DISTNAME}/scripts/ | ${XARGS} -I % ${REINPLACE_CMD} 's|share/man|man|g' % @cd ${MS_WRKSRC}/${MS_DISTNAME}/ && ${GMAKE} docclean markedclean all html/doc/misc/npm-index.html - @${FIND} ${MS_WRKSRC}/${MS_DISTNAME}/ -type d -exec ${CHMOD} 755 '{}' \; - @${FIND} ${MS_WRKSRC}/${MS_DISTNAME}/ -type f -exec ${CHMOD} 644 '{}' \; - @${FIND} ${MS_WRKSRC}/${MS_DISTNAME}/ -type f -name '*.sh' -exec ${CHMOD} 755 '{}' \; + @${FIND} ${MS_WRKSRC}/${MS_DISTNAME}/ -type d -exec ${CHMOD} 755 {} \; + @${FIND} ${MS_WRKSRC}/${MS_DISTNAME}/ -type f -exec ${CHMOD} 644 {} \; + @${FIND} ${MS_WRKSRC}/${MS_DISTNAME}/ -type f -name '*.sh' -exec ${CHMOD} 755 {} \; @cd ${MS_WRKSRC}/ && ${TAR} -Jcf ${MS_DISTNAME}.tar.xz ${MS_DISTNAME}/ @${REINPLACE_CMD} -e '/^PORTVERSION=/ s|${PORTVERSION}|'${MS_VERSION}'|; /^PORTREVISION=/d' ${.CURDIR}/Makefile @sudo ${INSTALL} -m 644 ${MS_WRKSRC}/${PORTNAME}-${MS_VERSION}.tar.xz ${DISTDIR}/ |