Bug 97518 - for fast-update, do a regular checkout of NSS since it's on a static tag. r=cls, a=asa.

This commit is contained in:
bryner%netscape.com 2001-08-31 00:36:37 +00:00
Родитель b64ae31f85
Коммит d16c9fe908
1 изменённых файлов: 6 добавлений и 1 удалений

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

@ -426,9 +426,14 @@ real_fast-update:
@failed=.fast_update-failed.tmp; rm -f $$failed*; \
fast_update() { (config/cvsco-fast-update.pl $$@ || touch $$failed) 2>&1 | tee -a $(CVSCO_LOGFILE) && \
if test -f $$failed; then false; else true; fi; }; \
cvs_co() { echo "$$@" ; \
("$$@" || touch $$failed) 2>&1 | tee -a $(CVSCO_LOGFILE) && \
if test -f $$failed; then false; else true; fi; }; \
fast_update $(CVSCO_NSPR) && \
fast_update $(CVSCO_PSM) && \
fast_update $(CVSCO_NSS) && \
cd $(ROOTDIR) && \
cvs_co $(CVSCO_NSS) && \
cd mozilla && \
fast_update $(CVSCO_LDAPCSDK) && \
fast_update $(CVSCO_ACCESSIBLE) && \
fast_update $(CVSCO_GFX2) && \