hholzgra                Fri Jan 11 17:32:04 2002 EDT

  Modified files:              
    /phpdoc     Makefile.in 
  Log:
  make sure tests work even if funcindex.xml is missing
  (should be solved in a more general way ...)
  
  
Index: phpdoc/Makefile.in
diff -u phpdoc/Makefile.in:1.99 phpdoc/Makefile.in:1.100
--- phpdoc/Makefile.in:1.99     Fri Jan 11 16:28:41 2002
+++ phpdoc/Makefile.in  Fri Jan 11 17:32:04 2002
@@ -17,7 +17,7 @@
 #
 
 #
-# $Id: Makefile.in,v 1.99 2002/01/11 21:28:41 jimw Exp $
+# $Id: Makefile.in,v 1.100 2002/01/11 22:32:04 hholzgra Exp $
 #
 
 all: html
@@ -224,10 +224,12 @@
 
 # test all possible errors
 test: manual.xml
+       if test ! -e funcindex.xml; then touch funcindex.xml; fi 
        $(NSGMLS) -i lang-$(LANG) -s $(XMLDCL) manual.xml
 
 # ignore missing IDs and check if the manual can be generated anyway
 test_man_gen: manual.xml
+       if test ! -e funcindex.xml; then touch funcindex.xml; fi 
        $(NSGMLS) -wno-idref -i lang-$(LANG) -s $(XMLDCL) manual.xml
 
 # }}}


Reply via email to