From 65de66dd10375ae6eb91f2ce51efe3e6fc9b04ec Mon Sep 17 00:00:00 2001 From: Jan Lindemann Date: Mon, 21 Mar 2016 14:04:32 +0000 Subject: [PATCH] projects-dir.mk: Make CVS_RSH definition conditional Signed-off-by: Jan Lindemann --- make/projects-dir.mk | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/make/projects-dir.mk b/make/projects-dir.mk index 23480390..03b04da2 100644 --- a/make/projects-dir.mk +++ b/make/projects-dir.mk @@ -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))