changeset 9925:955035efb929

Revert to using Ghostscript for documentation pdf image creation rather than Octave
author Rik <rdrider0-list@yahoo.com>
date Fri, 04 Dec 2009 16:25:09 -0800
parents d0d6ff39db54
children 7ad553781c62
files doc/ChangeLog doc/interpreter/images.awk
diffstat 2 files changed, 11 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/doc/ChangeLog
+++ b/doc/ChangeLog
@@ -1,3 +1,8 @@
+2009-12-04  Rik <octave@nomad.inbox5.com>
+
+	* interpreter/images.awk: Revert to using Ghostscript for documentation 
+	pdf image creation rather than Octave.
+
 2009-12-04  Rik <octave@nomad.inbox5.com>
 
 	* Makefile.am, interpreter/Makefile.am, liboctave/Makefile.am: remove 
--- a/doc/interpreter/images.awk
+++ b/doc/interpreter/images.awk
@@ -25,6 +25,12 @@
 
     printf ("IMAGES_%s += $(%s_%s)\n", uext, ubasename, uext);
 
+    # Skip building pdf images in Octave
+    # Use Makefile rule to transform .eps files to .pdf
+    if (ext == "pdf") {
+      continue;
+    }
+
     if (ext == "png") {
       printf ("HTMLDIR_IMAGES += ");
       for (j = 2; j <= NF; j++)