This is the mail archive of the ecos-patches@sources.redhat.com mailing list for the eCos project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

makemakefile SGML_OTHER patch


The doc/sgml/makemakefile create the makefile with two lines setting
OTHER_SGML. The first lists all the sub sgml files and the second one
sets the variable back to NULL. Hence the dependency check does not
work.

Is this patch OK?

   Andrew


Index: doc//ChangeLog
===================================================================
RCS file: /cvs/ecos/ecos/doc/ChangeLog,v
retrieving revision 1.7
diff -u -r1.7 ChangeLog
--- doc//ChangeLog      18 Oct 2002 01:45:34 -0000      1.7
+++ doc//ChangeLog      28 Oct 2002 16:51:21 -0000
@@ -1,3 +1,8 @@
+2002-10-28  Andrew Lunn  <andrew.lunn@ascom.ch>
+
+       * sgml/makemakefile: Removed the second OTHER_SGML which clobbers
+       the first correct definition, so stopping dependencies working.
+
 2002-10-15  Iztok Zupet <iz@vsr.si>
 
        * sgml/README-PDF: added
Index: doc//sgml/makemakefile
===================================================================
RCS file: /cvs/ecos/ecos/doc/sgml/makemakefile,v
retrieving revision 1.4
diff -u -r1.4 makemakefile
--- doc//sgml/makemakefile      18 Oct 2002 01:45:34 -0000      1.4
+++ doc//sgml/makemakefile      28 Oct 2002 16:51:21 -0000
@@ -82,7 +82,6 @@
 
 MAIN_HTML  := ecos.html
 MAIN_PDF   := ecos.pdf
-OTHER_SGML :=
 PICTURES   :=
 
 include \$(TOPLEVEL)/pkgconf/rules.doc
@@ -192,3 +191,5 @@
 done
 
 echo '</book>' >> ecos.sgml
+
+


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]