[Bf-docboard-svn] bf-manual: [7141] trunk/blender_docs/Makefile: Fix bad string quoting in the makefile

Campbell Barton noreply at blender.org
Tue Sep 29 06:36:04 CEST 2020


Revision: 7141
          https://developer.blender.org/rBM7141
Author:   campbellbarton
Date:     2020-09-29 06:36:04 +0200 (Tue, 29 Sep 2020)
Log Message:
-----------
Fix bad string quoting in the makefile

Modified Paths:
--------------
    trunk/blender_docs/Makefile

Modified: trunk/blender_docs/Makefile
===================================================================
--- trunk/blender_docs/Makefile	2020-09-29 04:34:55 UTC (rev 7140)
+++ trunk/blender_docs/Makefile	2020-09-29 04:36:04 UTC (rev 7141)
@@ -125,7 +125,7 @@
 	make -C "$(BUILDDIR)/latex" LATEXOPTS="-interaction nonstopmode"
 
 	@echo "To view, run:"
-	@echo "  "$(OPEN_CMD)" $(shell pwd)"/$(BUILDDIR)/latex/blender_manual.pdf"
+	@echo "  "$(OPEN_CMD) $(shell pwd)"/$(BUILDDIR)/latex/blender_manual.pdf"
 
 readme: .FORCE
 	rst2html5 readme.rst > ./build/readme.html
@@ -132,7 +132,7 @@
 
 	@echo "Build finished. The HTML page is in $(BUILDDIR)/readme.html."
 	@echo "To view, run:"
-	@echo "  "$(OPEN_CMD)" $(shell pwd)"/$(BUILDDIR)/readme.html"
+	@echo "  "$(OPEN_CMD) $(shell pwd)"/$(BUILDDIR)/readme.html"
 
 check_syntax: .FORCE
 	- python3 tools_rst/rst_check_syntax.py --long --title --kbd > rst_check_syntax.log




More information about the Bf-docboard-svn mailing list