Skip to content
Snippets Groups Projects
Commit fd79d924 authored by bugzilla@standard8.demon.co.uk's avatar bugzilla@standard8.demon.co.uk
Browse files

Attempt to fix bug 359716 bustage by not pulling release tags by date. If it...

Attempt to fix bug 359716 bustage by not pulling release tags by date. If it works, I'll get reviews afterwards.
parent 0de7385e
No related branches found
No related tags found
No related merge requests found
......@@ -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.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment