diff options
author | maho <maho@FreeBSD.org> | 2003-07-26 07:15:46 +0800 |
---|---|---|
committer | maho <maho@FreeBSD.org> | 2003-07-26 07:15:46 +0800 |
commit | c75fc95ab4361b2a90f955898f92ed7cc93b8ebb (patch) | |
tree | ac47d51f202856e412bd47ae19173c92f0e2f187 /shells/scponly | |
parent | 72bc72919c27dba5da6a3c57b0ee3214bc2c4d5d (diff) | |
download | freebsd-ports-gnome-c75fc95ab4361b2a90f955898f92ed7cc93b8ebb.tar.gz freebsd-ports-gnome-c75fc95ab4361b2a90f955898f92ed7cc93b8ebb.tar.zst freebsd-ports-gnome-c75fc95ab4361b2a90f955898f92ed7cc93b8ebb.zip |
Fix compatibility with rsync (depend explicitly on rsync).
PR: 54844
Submitted by: rushani (maintainer)
Diffstat (limited to 'shells/scponly')
-rw-r--r-- | shells/scponly/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/shells/scponly/Makefile b/shells/scponly/Makefile index 4ba26237310a..ee5641c56b12 100644 --- a/shells/scponly/Makefile +++ b/shells/scponly/Makefile @@ -84,7 +84,9 @@ CONFIGURE_ARGS+=--enable-winscp-compat CONFIGURE_ARGS+=--disable-winscp-compat .endif -.if defined(WITH_SCPONLY_RSYNC) && exists(${LOCALBASE}/bin/rsync) +.if defined(WITH_SCPONLY_RSYNC) +BUILD_DEPENDS= rsync:${PORTSDIR}/net/rsync +RUN_DEPENDS= ${BUILD_DEPENDS} CONFIGURE_ARGS+=--enable-rsync-compat .else CONFIGURE_ARGS+=--disable-rsync-compat |