[pypy-commit] extradoc extradoc: do not depend on the logfiles to build

bivab noreply at buildbot.pypy.org
Tue Jul 24 20:59:45 CEST 2012


Author: David Schneider <david.schneider at picle.org>
Branch: extradoc
Changeset: r4352:b67459025715
Date: 2012-07-24 20:56 +0200
http://bitbucket.org/pypy/extradoc/changeset/b67459025715/

Log:	do not depend on the logfiles to build

diff --git a/talk/vmil2012/Makefile b/talk/vmil2012/Makefile
--- a/talk/vmil2012/Makefile
+++ b/talk/vmil2012/Makefile
@@ -22,8 +22,11 @@
 	tool/setup.sh
 	paper_env/bin/python tool/build_tables.py logs/summary.csv tool/table_template.tex figures/benchmarks_table.tex
 
+logs/logbench*:;
+
 logs/summary.csv: logs/logbench* tool/difflogs.py
-	python tool/difflogs.py --diffall logs
+	@if ls logs/logbench* &> /dev/null; then python tool/difflogs.py --diffall logs; fi
 
 logs::
 	tool/run_benchmarks.sh
+


More information about the pypy-commit mailing list