[llvm-commits] [llvm] r169105 - /llvm/trunk/docs/Makefile.sphinx
Eli Bendersky
eliben at google.com
Sat Dec 1 14:21:04 PST 2012
Author: eliben
Date: Sat Dec 1 16:21:04 2012
New Revision: 169105
URL: http://llvm.org/viewvc/llvm-project?rev=169105&view=rev
Log:
Another fix attempt to Makefile.sphinx - copy the PNGs from tutorial/ as well,
and recursive copying is not required for the tutorial/ directory.
Modified:
llvm/trunk/docs/Makefile.sphinx
Modified: llvm/trunk/docs/Makefile.sphinx
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/Makefile.sphinx?rev=169105&r1=169104&r2=169105&view=diff
==============================================================================
--- llvm/trunk/docs/Makefile.sphinx (original)
+++ llvm/trunk/docs/Makefile.sphinx Sat Dec 1 16:21:04 2012
@@ -49,7 +49,8 @@
@# FIXME: Remove this `cp` once HTML->Sphinx transition is completed.
@# Kind of a hack, but HTML-formatted docs are on the way out anyway.
@echo "Copying legacy HTML-formatted docs into $(BUILDDIR)/html"
- @cp -a *.html tutorial/*.html $(BUILDDIR)/html
+ @cp -a *.html $(BUILDDIR)/html
+ @cp tutorial/*.html tutorial/*.png $(BUILDDIR)/html
@echo "Build finished. The HTML pages are in $(BUILDDIR)/html."
dirhtml:
More information about the llvm-commits
mailing list