changeset 10870:307c8396bc83

images.awk: HTML images makefile rule depends on octave.html/index.html.
author Rik <octave@nomad.inbox5.com>
date Sun, 08 Aug 2010 21:23:39 -0700
parents f0a897829e81
children 333bf09e3b6e
files doc/ChangeLog doc/interpreter/images.awk
diffstat 2 files changed, 5 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/doc/ChangeLog	Sun Aug 08 17:12:54 2010 -0700
+++ b/doc/ChangeLog	Sun Aug 08 21:23:39 2010 -0700
@@ -1,3 +1,7 @@
+2010-08-08  Rik <octave@nomad.inbox5.com>
+
+	* interpreter/images.awk: HTML images depend on octave.html/index.html.
+
 2010-08-01  Rik <octave@nomad.inbox5.com>
 
 	* interpreter/basics.txi, interpreter/contrib.txi,
--- a/doc/interpreter/images.awk	Sun Aug 08 17:12:54 2010 -0700
+++ b/doc/interpreter/images.awk	Sun Aug 08 21:23:39 2010 -0700
@@ -40,7 +40,7 @@
 
     for (j = 2; j <= NF; j++) {
       if (ext == "png") {
-	printf ("octave.html/%s.png: %s.png octave.html\n", $j, $j);
+	printf ("octave.html/%s.png: %s.png octave.html/index.html\n", $j, $j);
 	printf ("\tcp $< $@\n");
       }
       printf ("%s.%s: %s\n", $j, ext, script);