Skip to content
Snippets Groups Projects
Commit d7cea8a0 authored by leaf%mozilla.org's avatar leaf%mozilla.org
Browse files

Pull nsprpub by static tag. patch from wtc, r=leaf

parent 34cf1e6b
No related branches found
No related tags found
No related merge requests found
......@@ -140,6 +140,20 @@ else
endif
#######################################################################
# NSPR
#
NSPR_CO_MODULE = mozilla/nsprpub
NSPR_CO_FLAGS := -P
CVSCO_NSPR = cvs $(CVS_FLAGS) co $(NSPR_CO_FLAGS)
NSPR_CO_TAG = NSPRPUB_20000201
ifdef NSPR_CO_TAG
NSPR_CO_FLAGS := $(NSPR_CO_FLAGS) -r $(NSPR_CO_TAG)
endif
#######################################################################
# Rules
#
......@@ -175,9 +189,13 @@ checkout:
: error. If the file is created, remove it and return an error. \
; \
echo "checkout start: "`date` | tee $(CVSCO_LOGFILE); \
echo "cd $(ROOTDIR); $(CVSCO) $(MOZ_CO_MODULE)"; \
echo "cd $(ROOTDIR)"; \
cd $(ROOTDIR); \
rm -f cvs-failed.tmp*; \
echo "$(CVSCO_NSPR) $(NSPR_CO_MODULE)"; \
( $(CVSCO_NSPR) $(NSPR_CO_MODULE) || touch cvs-failed.tmp ) 2>&1 \
| tee -a $(CVSCO_LOGFILE); \
echo "$(CVSCO) $(MOZ_CO_MODULE)"; \
( $(CVSCO) $(MOZ_CO_MODULE) || touch cvs-failed.tmp ) 2>&1 \
| tee -a $(CVSCO_LOGFILE); \
if test -f cvs-failed.tmp ; then \
......
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