[svnbook commit] r1556 - trunk/src/nb

sunny256 svnbook-dev at red-bean.com
Tue Jul 19 11:56:40 CDT 2005


Author: sunny256
Date: Tue Jul 19 11:56:39 2005
New Revision: 1556

Modified:
   trunk/src/nb/Makefile
Log:
Be nice to the svnbook server when running "make bookdiff" for the 
Norwegian book. Instead of checking out the src/en/book/ directory from 
the server, do a local copy of the directory made by "make engdir".

* src/nb/Makefile
  (bookdiff): Don’t check out the whole English "book" directory, run 
    "make engdir" instead and copy the directory locally.


Modified: trunk/src/nb/Makefile
==============================================================================
--- trunk/src/nb/Makefile	(original)
+++ trunk/src/nb/Makefile	Tue Jul 19 11:56:39 2005
@@ -58,7 +58,8 @@
 
 bookdiff:
 	mkdir $(BDTMP)
-	svn co -N -r`cat LAST_UPDATED` $(COLLAB)/trunk/src/en/book $(BDTMP)/eng
+	$(MAKE) engdir
+	cp -a book/eng $(BDTMP)/
 	for _ptd in $(BDFILES); do \
 		cat $(BDTMP)/eng/$$_ptd | bin/clean_files -e >>$(BDTMP)/eng.txt; \
 		cat book/$$_ptd | bin/clean_files -e >>$(BDTMP)/norw.txt; \



More information about the svnbook-dev mailing list