Adding support for MOZ_CVS_FLAGS (useful for specifying -z3) r=leaf

This commit is contained in:
dp%netscape.com 1999-11-22 22:33:40 +00:00
Родитель cb52f925ca
Коммит 07774a6034
1 изменённых файлов: 6 добавлений и 2 удалений

Просмотреть файл

@ -50,12 +50,16 @@ ERR_MESSAGE=$(ERR_MESSAGE)^
Cannot specify both MOZ_BRANCH and MOZ_DATE Cannot specify both MOZ_BRANCH and MOZ_DATE
!endif !endif
!if "$(MOZ_CVS_FLAGS)" != ""
CVS_FLAGS=$(MOZ_CVS_FLAGS)
!endif
# let's be explicit about CVSROOT... some windows cvs clients # let's be explicit about CVSROOT... some windows cvs clients
# are too stupid to correctly work without the -d option # are too stupid to correctly work without the -d option
!if defined(CVSROOT) !if defined(CVSROOT)
CVSCO = cvs -d $(CVSROOT) -q co $(CVS_BRANCH) -P CVSCO = cvs -d $(CVSROOT) -q $(CVS_FLAGS) co $(CVS_BRANCH) -P
!else !else
CVSCO = cvs -q co $(CVS_BRANCH) -P CVSCO = cvs -q $(CVS_FLAGS) co $(CVS_BRANCH) -P
!endif !endif
CVSCO_TAG = cvs -q co -P CVSCO_TAG = cvs -q co -P