diff options
author | will <will@FreeBSD.org> | 2001-01-08 01:49:52 +0800 |
---|---|---|
committer | will <will@FreeBSD.org> | 2001-01-08 01:49:52 +0800 |
commit | 17fc78c61a40e51c25675da0e3d99e222c1abdd3 (patch) | |
tree | a8b19a050dd6847de35f8b185751c1b52138d171 /audio/holyshout/Makefile | |
parent | 98a4931c0a8138d6f6fb6de52d4fd949a15ae520 (diff) | |
download | freebsd-ports-gnome-17fc78c61a40e51c25675da0e3d99e222c1abdd3.tar.gz freebsd-ports-gnome-17fc78c61a40e51c25675da0e3d99e222c1abdd3.tar.zst freebsd-ports-gnome-17fc78c61a40e51c25675da0e3d99e222c1abdd3.zip |
Clean up inefficient perl invocations; use multiple REs in the same call.
Diffstat (limited to 'audio/holyshout/Makefile')
-rw-r--r-- | audio/holyshout/Makefile | 6 |
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> |