From 07774a603469e455b2764b56282e69c252f76d56 Mon Sep 17 00:00:00 2001 From: "dp%netscape.com" Date: Mon, 22 Nov 1999 22:33:40 +0000 Subject: [PATCH] Adding support for MOZ_CVS_FLAGS (useful for specifying -z3) r=leaf --- client.mak | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/client.mak b/client.mak index 31bba55f906..fbc9b623054 100644 --- a/client.mak +++ b/client.mak @@ -50,12 +50,16 @@ ERR_MESSAGE=$(ERR_MESSAGE)^ Cannot specify both MOZ_BRANCH and MOZ_DATE !endif +!if "$(MOZ_CVS_FLAGS)" != "" +CVS_FLAGS=$(MOZ_CVS_FLAGS) +!endif + # let's be explicit about CVSROOT... some windows cvs clients # are too stupid to correctly work without the -d option !if defined(CVSROOT) -CVSCO = cvs -d $(CVSROOT) -q co $(CVS_BRANCH) -P +CVSCO = cvs -d $(CVSROOT) -q $(CVS_FLAGS) co $(CVS_BRANCH) -P !else -CVSCO = cvs -q co $(CVS_BRANCH) -P +CVSCO = cvs -q $(CVS_FLAGS) co $(CVS_BRANCH) -P !endif CVSCO_TAG = cvs -q co -P