From fd79d924ffa74e251576cbddfa5c184cf300ea46 Mon Sep 17 00:00:00 2001 From: "bugzilla@standard8.demon.co.uk" Date: Fri, 30 Mar 2007 07:03:08 -0700 Subject: [PATCH] Attempt to fix bug 359716 bustage by not pulling release tags by date. If it works, I'll get reviews afterwards. --- client.mk | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/client.mk b/client.mk index 74bbc66e2a2d..d498a437d372 100644 --- a/client.mk +++ b/client.mk @@ -629,7 +629,13 @@ ifdef MOZ_CO_FLAGS LDAPCSDK_CO_FLAGS := $(MOZ_CO_FLAGS) endif LDAPCSDK_CO_FLAGS := $(LDAPCSDK_CO_FLAGS) $(if $(LDAPCSDK_CO_TAG),-r $(LDAPCSDK_CO_TAG),-A) + +# Can only pull the tip or branch tags by date +ifeq (,$(filter-out HEAD %BRANCH,$(LDAPCSDK_CO_TAG))) CVSCO_LDAPCSDK = $(CVS) $(CVS_FLAGS) co $(LDAPCSDK_CO_FLAGS) $(CVS_CO_DATE_FLAGS) $(LDAPCSDK_CO_MODULE) +else +CVSCO_LDAPCSDK = $(CVS) $(CVS_FLAGS) co $(LDAPCSDK_CO_FLAGS) $(LDAPCSDK_CO_MODULE) +endif #################################### # Error on obsolete variables.