diff options
author | will <will@FreeBSD.org> | 2001-01-07 17:49:52 +0000 |
---|---|---|
committer | will <will@FreeBSD.org> | 2001-01-07 17:49:52 +0000 |
commit | 17fc78c61a40e51c25675da0e3d99e222c1abdd3 (patch) | |
tree | a8b19a050dd6847de35f8b185751c1b52138d171 /security | |
parent | 98a4931c0a8138d6f6fb6de52d4fd949a15ae520 (diff) | |
download | FreeBSD-ports-17fc78c61a40e51c25675da0e3d99e222c1abdd3.zip FreeBSD-ports-17fc78c61a40e51c25675da0e3d99e222c1abdd3.tar.gz |
Clean up inefficient perl invocations; use multiple REs in the same call.
Diffstat (limited to 'security')
-rw-r--r-- | security/portsentry/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/security/portsentry/Makefile b/security/portsentry/Makefile index fa7180a..af71d8c 100644 --- a/security/portsentry/Makefile +++ b/security/portsentry/Makefile @@ -15,8 +15,8 @@ MAINTAINER= dan@freebsddiary.org ALL_TARGET= freebsd post-patch: - @${PERL} -pi -e 's,__PREFIX__,${PREFIX},g' ${WRKSRC}/portsentry.conf - @${PERL} -pi -e 's,__PREFIX__,${PREFIX},g' ${WRKSRC}/portsentry_config.h + @${PERL} -pi -e 's,__PREFIX__,${PREFIX},g' \ + ${WRKSRC}/portsentry.conf ${WRKSRC}/portsentry_config.h do-install: .if !exists($(PREFIX)/etc/portsentry.conf) |