summaryrefslogtreecommitdiff
path: root/audio/holyshout
diff options
context:
space:
mode:
authorWill Andrews <will@FreeBSD.org>2001-01-07 17:49:52 +0000
committerWill Andrews <will@FreeBSD.org>2001-01-07 17:49:52 +0000
commite40046b15dfb9ad5c4dcaa8137ef304b829ea59b (patch)
tree608ae9c87b150f1e38d0af957c8f5103a8dacaab /audio/holyshout
parentFix typo. (diff)
Clean up inefficient perl invocations; use multiple REs in the same call.
Notes
Notes: svn path=/head/; revision=36897
Diffstat (limited to 'audio/holyshout')
-rw-r--r--audio/holyshout/Makefile6
1 files changed, 2 insertions, 4 deletions
diff --git a/audio/holyshout/Makefile b/audio/holyshout/Makefile
index 4c98541e0ddf..bffcb72fbae0 100644
--- a/audio/holyshout/Makefile
+++ b/audio/holyshout/Makefile
@@ -15,9 +15,7 @@ MAINTAINER= hollywar@mail.holywar.net
USE_GMAKE= yes
post-patch:
- (cd ${WRKSRC} && find . -name Makefile | xargs ${PERL} -pi -e \
- "s@-O20@${CFLAGS}@g")
- (cd ${WRKSRC} && find . -name Makefile | xargs ${PERL} -pi -e \
- "s@-O2@${CFLAGS}@g")
+ (find ${WRKSRC} -name Makefile | xargs ${PERL} -pi -e \
+ "s@-O20@${CFLAGS}@g ; s@-O2@${CFLAGS}@g")
.include <bsd.port.mk>