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 /net-mgmt/p0f | |
parent | 98a4931c0a8138d6f6fb6de52d4fd949a15ae520 (diff) | |
download | freebsd-ports-graphics-17fc78c61a40e51c25675da0e3d99e222c1abdd3.tar.gz freebsd-ports-graphics-17fc78c61a40e51c25675da0e3d99e222c1abdd3.tar.zst freebsd-ports-graphics-17fc78c61a40e51c25675da0e3d99e222c1abdd3.zip |
Clean up inefficient perl invocations; use multiple REs in the same call.
Diffstat (limited to 'net-mgmt/p0f')
-rw-r--r-- | net-mgmt/p0f/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net-mgmt/p0f/Makefile b/net-mgmt/p0f/Makefile index f5731c38345..af0b6cdc0c8 100644 --- a/net-mgmt/p0f/Makefile +++ b/net-mgmt/p0f/Makefile @@ -17,8 +17,8 @@ MAINTAINER= trevor@FreeBSD.org WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} post-patch: - @${PERL} -pi -e "s=/etc=${PREFIX}/etc=g" ${WRKSRC}/p0f.c - @${PERL} -pi -e "s=/etc=${PREFIX}/etc=g" ${WRKSRC}/README + @${PERL} -pi -e "s=/etc=${PREFIX}/etc=g ; \ + s=/etc=${PREFIX}/etc=g" ${WRKSRC}/README do-install: @${INSTALL_PROGRAM} ${WRKSRC}/p0f ${PREFIX}/bin |