projects-dir.mk: Make CVS_RSH definition conditional

Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
Jan Lindemann 2016-03-21 14:04:32 +00:00
commit 65de66dd10

View file

@ -44,8 +44,10 @@ ifeq ($(CVSROOT),)
export CVSROOT
endif
CVS_RSH = ssh
export CVS_RSH
ifeq ($(CVS_RSH),)
CVS_RSH = ssh
export CVS_RSH
endif
PGIT = CLONE_PROJECTS="$(PROJECTS)" CLONE_FROM_USER="$(shell whoami)" /bin/bash $(firstword $(wildcard ./ytools/devutil/scripts/pgit.sh /opt/ytools/bin/pgit.sh))