diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2002-06-14 07:21:10 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2002-06-14 07:21:10 +0000 |
commit | 43e80d5a4bcfc342b200fd0ff07cbbab6fd52588 (patch) | |
tree | 25dcc091ce9032e57453942a45ff9ded737107f1 /net/rsync | |
parent | Use ${REINPLACE_CMD} instead of ${PERL} (diff) |
Replace ${PERL} with ${REINPLACE_CMD}.
PR: 39243, 39244, 39245, 39249
Submitted by: maintainer
Diffstat (limited to 'net/rsync')
-rw-r--r-- | net/rsync/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/rsync/Makefile b/net/rsync/Makefile index bc1a191426ea..3e695f5df9c2 100644 --- a/net/rsync/Makefile +++ b/net/rsync/Makefile @@ -45,12 +45,12 @@ MAN1= rsync.1 MAN5= rsyncd.conf.5 pre-configure: - @${PERL} -pi.orig -e 's:/etc/:${PREFIX}/etc/:g' \ + @${REINPLACE_CMD} -e 's:/etc/:${PREFIX}/etc/:g' \ ${WRKSRC}/rsync.h ${WRKSRC}/rsync.1 ${WRKSRC}/rsyncd.conf.5 - @${PERL} -pi.orig -e 's|malloc.h|stdlib.h|g' \ + @${REINPLACE_CMD} -e 's|malloc.h|stdlib.h|g' \ ${WRKSRC}/rsync.h ${WRKSRC}/zlib/zutil.h .if defined(WITH_SSH) - @${PERL} -pi.orig-rsh -e 's/"rsh"/"ssh"/g' ${WRKSRC}/rsync.h + @${REINPLACE_CMD} -e 's/"rsh"/"ssh"/g' ${WRKSRC}/rsync.h .endif post-install: |