Author: fw Date: 2008-05-31 20:32:17 +0000 (Sat, 31 May 2008) New Revision: 8950 Modified: Makefile Log: Makefile: only copy security.db if it exists Modified: Makefile ==================================================================--- Makefile 2008-05-31 14:00:54 UTC (rev 8949) +++ Makefile 2008-05-31 20:32:17 UTC (rev 8950) @@ -12,7 +12,7 @@ all: rm -f data/security-new.db data/security-new.db.journal - cp data/security.db data/security-new.db + if test -e data/security.db; then cp data/security.db data/security-new.db; fi $(PYTHON) bin/update-db data/security-new.db mv data/security-new.db data/security.db