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 | 29218a1abaedd1c9155a21b9b7f12bdc41fa0e5e (diff) | |
download | ports-43e80d5a4bcfc342b200fd0ff07cbbab6fd52588.tar.gz ports-43e80d5a4bcfc342b200fd0ff07cbbab6fd52588.zip |
Replace ${PERL} with ${REINPLACE_CMD}.
PR: 39243, 39244, 39245, 39249
Submitted by: maintainer
Notes
Notes:
svn path=/head/; revision=61249
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: |