From 2bd79e707697773cdbaf059d0f2316bfe2670e00 Mon Sep 17 00:00:00 2001 From: Tony S Yu Date: Fri, 23 Sep 2011 23:55:14 -0400 Subject: [PATCH] DOC: Fix order of parameters passed to cp Specifying an optional parameter after required parameters raises error (at least in OS X). --- doc/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/Makefile b/doc/Makefile index 2abac1ce..a041f834 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -44,7 +44,7 @@ coveragetable: html: api coveragetable $(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(DEST)/html - cp source/plots $(DEST)/html -r + cp -r source/plots $(DEST)/html @echo @echo "Build finished. The HTML pages are in build/html."