summaryrefslogtreecommitdiff
path: root/audio
diff options
context:
space:
mode:
authorMathieu Arnold <mat@FreeBSD.org>2016-12-01 11:18:03 +0000
committerMathieu Arnold <mat@FreeBSD.org>2016-12-01 11:18:03 +0000
commit8664861b1a575bcf859a90c6fea2b05a1187f1f0 (patch)
tree33a19b5745c1e5e7cbfa4a5ab2c30f6971177e74 /audio
parentUpdate 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 'audio')
-rw-r--r--audio/praat/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/audio/praat/Makefile b/audio/praat/Makefile
index 1f0f06e02309..5f68bab0b20e 100644
--- a/audio/praat/Makefile
+++ b/audio/praat/Makefile
@@ -28,9 +28,9 @@ USE_GCC= yes
post-patch:
@${FIND} ${WRKSRC} -name Makefile -exec \
- ${REINPLACE_CMD} -e 's|^CFLAGS =|CFLAGS +=|' "{}" \;
+ ${REINPLACE_CMD} -e 's|^CFLAGS =|CFLAGS +=|' {} \;
@${FIND} ${WRKSRC} -name Makefile -exec \
- ${REINPLACE_CMD} -e 's|^CPPFLAGS =|CPPFLAGS +=|' "{}" \;
+ ${REINPLACE_CMD} -e 's|^CPPFLAGS =|CPPFLAGS +=|' {} \;
@${CP} ${FILESDIR}/makefile.defs.freebsd.alsa \
${WRKSRC}/makefile.defs
@${REINPLACE_CMD} -e 's|%%WRKSRC%%|${WRKSRC}|g' \