diff options
author | Jeremy Lea <reg@FreeBSD.org> | 2000-04-17 00:19:02 +0000 |
---|---|---|
committer | Jeremy Lea <reg@FreeBSD.org> | 2000-04-17 00:19:02 +0000 |
commit | b4455771cced2fe9f134e751fe88dbba7226e694 (patch) | |
tree | 39733bef5e1d466d30938b5a47f0b46a7b6890b4 /net/rsync | |
parent | Standardize all user defined options to the booleans WITH_FOO and (diff) |
Standardize all user defined options to the booleans WITH_FOO and
WITHOUT_FOO. Begin the process of reserving these prefixes for user defined
options.
No comment by: ports
Notes
Notes:
svn path=/head/; revision=27680
Diffstat (limited to 'net/rsync')
-rw-r--r-- | net/rsync/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/rsync/Makefile b/net/rsync/Makefile index a0357e9b894f..98f68e448529 100644 --- a/net/rsync/Makefile +++ b/net/rsync/Makefile @@ -39,7 +39,7 @@ pre-configure: @${PERL} -pi.orig -e 's:/etc/:${PREFIX}/etc/:g' ${WRKSRC}/rsync.h @${PERL} -pi.orig -e 's:/etc/:${PREFIX}/etc/:g' ${WRKSRC}/rsync.1 @${PERL} -pi.orig -e 's:/etc/:${PREFIX}/etc/:g' ${WRKSRC}/rsyncd.conf.5 -.if defined(WITH_SSH) || defined(USE_SSH) +.if defined(WITH_SSH) @${PERL} -pi.orig-rsh -e 's/"rsh"/"ssh"/g' ${WRKSRC}/rsync.h .endif |