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

Fix a couple client.mk error. Remove the log *before* it is written to. Clean...

Fix a couple client.mk error. Remove the log *before* it is written to. Clean up cvs-failed.tmp file properly. r=mcafee
parent f0caec84
No related branches found
No related tags found
No related merge requests found
......@@ -183,6 +183,11 @@ everything: checkout clobber_all build
# CVS checkout
#
checkout:
@: 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; \
cd $(ROOTDIR); \
......@@ -190,11 +195,6 @@ checkout:
$(MAKE) -f mozilla/client.mk real_checkout
real_checkout:
@: Backup the last checkout log.
@if test -f $(CVSCO_LOGFILE) ; then \
mv $(CVSCO_LOGFILE) $(CVSCO_LOGFILE).old; \
else true; \
fi
@: Start the checkout. Pipe the output to the tty and a log file. \
: If it fails, touch an error file because the pipe hides the \
: error. If the file is created, remove it and return an error.
......@@ -215,10 +215,9 @@ real_checkout:
echo "$(MAKE): *** Conflicts during checkout." ;\
echo "$$conflicts" ;\
echo "$(MAKE): Refer to $(CVSCO_LOGFILE) for full log." ;\
false; \
else true; \
fi
@if test -f cvs-failed.tmp ; then \
fi; \
if test -f cvs-failed.tmp ; then \
rm cvs-failed.tmp; \
false; \
else true; \
......
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