diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2002-06-21 16:17:18 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2002-06-21 16:17:18 +0000 |
commit | 444d2e1edce5f2e0fad951a90dc9b7845dd81f37 (patch) | |
tree | 3a9b82133fa294be7fc8104f74c1fe13495438dc /net/gopher | |
parent | Replace ${PERL} with ${REINPLACE_CMD} (diff) |
${PERL} -> ${REINPLACE_CMD}
PR: 39587, 39589, 39590
Submitted by: maintainer
Notes
Notes:
svn path=/head/; revision=61684
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> |