diff options
author | ijliao <ijliao@FreeBSD.org> | 2002-06-22 00:17:18 +0800 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2002-06-22 00:17:18 +0800 |
commit | 47ed91c6adc3291426fa5760230286c31b9dc8be (patch) | |
tree | 5ff8a87c47bdf854048beb9f847df927471f4fb7 /net/gopher | |
parent | c892af1780b67e6fdabc7f4945bcad3d9e29571d (diff) | |
download | freebsd-ports-gnome-47ed91c6adc3291426fa5760230286c31b9dc8be.tar.gz freebsd-ports-gnome-47ed91c6adc3291426fa5760230286c31b9dc8be.tar.zst freebsd-ports-gnome-47ed91c6adc3291426fa5760230286c31b9dc8be.zip |
${PERL} -> ${REINPLACE_CMD}
PR: 39587, 39589, 39590
Submitted by: maintainer
Diffstat (limited to 'net/gopher')
-rw-r--r-- | net/gopher/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/net/gopher/Makefile b/net/gopher/Makefile index b2d9ecd14cfc..b872012bf437 100644 --- a/net/gopher/Makefile +++ b/net/gopher/Makefile @@ -15,12 +15,14 @@ MAINTAINER= erwin@lansing.dk GNU_CONFIGURE= yes USE_GMAKE= yes +USE_REINPLACE= yes MAN1= gopher.1 gophfilt.1 MAN5= gopherd.conf.5 gopherrc.5 MAN8= gopherd.8 gopherindex.8 pre-patch: - @${FIND} ${WRKSRC} -name '*.[ch]' | xargs ${PERL} -pi -e 's,<malloc.h>,<stdlib.h>,' + @${FIND} ${WRKSRC} -name '*.[ch]' | xargs ${REINPLACE_CMD} -e \ + 's,<malloc.h>,<stdlib.h>,' .include <bsd.port.mk> |