diff doc/interpreter/images.awk @ 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 49b9cab70b63
children e517da95bf98
line wrap: on
line diff
--- 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++)