Bugzilla bug 301249: a better way to determine if NSS_CO_TAG can be pulled

by date.  a=benjamin.smedberg.
This commit is contained in:
wtchang%redhat.com 2006-04-04 20:58:55 +00:00
Родитель 451bac61b8
Коммит dd73c120e0
1 изменённых файлов: 4 добавлений и 4 удалений

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

@ -540,11 +540,11 @@ ifdef MOZ_CO_FLAGS
endif
NSS_CO_FLAGS := $(NSS_CO_FLAGS) $(if $(NSS_CO_TAG),-r $(NSS_CO_TAG),-A)
# Cannot pull static tags by date
ifneq (,$(findstring _RTM,$(NSS_CO_TAG))$(findstring _TAG,$(NSS_CO_TAG)))
CVSCO_NSS = $(CVS) $(CVS_FLAGS) co $(NSS_CO_FLAGS) $(NSS_CO_MODULE)
else
# Can only pull the tip or branch tags by date
ifeq (,$(filter-out HEAD %BRANCH,$(NSS_CO_TAG)))
CVSCO_NSS = $(CVS) $(CVS_FLAGS) co $(NSS_CO_FLAGS) $(CVS_CO_DATE_FLAGS) $(NSS_CO_MODULE)
else
CVSCO_NSS = $(CVS) $(CVS_FLAGS) co $(NSS_CO_FLAGS) $(NSS_CO_MODULE)
endif
####################################