diff options
author | ijliao <ijliao@FreeBSD.org> | 2002-06-22 21:54:17 +0800 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2002-06-22 21:54:17 +0800 |
commit | 2aea0fed3e977cdaa3cd292d512ff0e5656f4c25 (patch) | |
tree | adf18dab3ad6f7992bfe2d7e2d87340924e89c86 /mail/mreport | |
parent | f47de1b8adcb8279af952274458227e3b43dc3f2 (diff) | |
download | freebsd-ports-gnome-2aea0fed3e977cdaa3cd292d512ff0e5656f4c25.tar.gz freebsd-ports-gnome-2aea0fed3e977cdaa3cd292d512ff0e5656f4c25.tar.zst freebsd-ports-gnome-2aea0fed3e977cdaa3cd292d512ff0e5656f4c25.zip |
Replace ${PERL} with ${REINPLACE_CMD}
PR: 39652
Submitted by: Oliver Braun <obraun@informatik.unibw-muenchen.de>
Diffstat (limited to 'mail/mreport')
-rw-r--r-- | mail/mreport/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mail/mreport/Makefile b/mail/mreport/Makefile index edf00954fc63..1e51b056c77e 100644 --- a/mail/mreport/Makefile +++ b/mail/mreport/Makefile @@ -12,13 +12,14 @@ MASTER_SITES= ftp://ftp.datrix.co.za/pub/mreport/ MAINTAINER= ports@FreeBSD.org +USE_REINPLACE= yes ALL_TARGET= ALL MAN8= mreport.8 post-patch: - ${PERL} -pi -e "s/^.TH mreport 1/.TH mreport 8/g; s/^.LO 1/.LO 8/g;" \ + @${REINPLACE_CMD} -e "s/^.TH mreport 1/.TH mreport 8/g; s/^.LO 1/.LO 8/g;" \ ${WRKSRC}/mreport.1 - ${PERL} -pi -e "s/^CC.+//g; s/-Wall -c -O2/${CFLAGS} -c/g;" \ + @${REINPLACE_CMD} -E -e "s/^CC.+//g; s/-Wall -c -O2/${CFLAGS} -c/g;" \ ${WRKSRC}/Makefile do-install: |