Skip to content
Snippets Groups Projects
Commit e5c00659 authored by bstell%netscape.com's avatar bstell%netscape.com
Browse files

bug 88454, r=mcafee, rs=sfraser

add real_fast-update target so old checkout log can be moved aside
parent f0adfa82
No related merge requests found
......@@ -408,6 +408,19 @@ real_checkout:
fi
fast-update:
# @: Backup the last checkout log.
@if test -f $(CVSCO_LOGFILE) ; then \
mv $(CVSCO_LOGFILE) $(CVSCO_LOGFILE).old; \
else true; \
fi
@echo "checkout start: "`date` | tee $(CVSCO_LOGFILE)
@echo '$(CVSCO) mozilla/client.mk mozilla/build/unix/modules.mk'; \
cd $(ROOTDIR); \
$(CVSCO) mozilla/client.mk mozilla/build/unix/modules.mk && \
cd mozilla; \
$(MAKE) -f client.mk real_fast-update
real_fast-update:
# @: Start the update. Split the output to the tty and a log file. \
# : If it fails, touch an error file because "tee" hides the error.
@failed=.fast_update-failed.tmp; rm -f $$failed*; \
......@@ -433,7 +446,6 @@ fast-update:
else true; \
fi
####################################
# Web configure
......
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