From 8c02bfede8cd8bec7f6c07774b5f9103bcb6b141 Mon Sep 17 00:00:00 2001 From: "bryner%netscape.com" Date: Fri, 31 Aug 2001 00:36:37 +0000 Subject: [PATCH] Bug 97518 - for fast-update, do a regular checkout of NSS since it's on a static tag. r=cls, a=asa. git-svn-id: svn://10.0.0.236/trunk@102049 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/client.mk | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/mozilla/client.mk b/mozilla/client.mk index 54c49613c91..bd3e177d731 100644 --- a/mozilla/client.mk +++ b/mozilla/client.mk @@ -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) && \