]> granicus.if.org Git - postgis/commitdiff
don't dtd validate when making comments and cheatsheets
authorRegina Obe <lr@pcorp.us>
Sat, 1 Dec 2012 08:34:41 +0000 (08:34 +0000)
committerRegina Obe <lr@pcorp.us>
Sat, 1 Dec 2012 08:34:41 +0000 (08:34 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@10775 b70326c6-7e19-0410-871a-916f4a2858ee

doc/Makefile.in

index aaf4d02bc0d57b5e804e9d764f1991868f9ec297..b7439802495f470d7f92ceebf9c9fa4ab72ee9b9 100644 (file)
@@ -157,32 +157,32 @@ ifeq ($(XSLTPROC),)
 postgis_aggs_mm.xml: requirements_not_met_xsltproc
 else
 postgis_aggs_mm.xml: ./xsl/postgis_aggs_mm.xml.xsl postgis-out.xml Makefile
-       $(XSLTPROC) ./xsl/postgis_aggs_mm.xml.xsl postgis-out.xml > $@
+       $(XSLTPROC) --novalid ./xsl/postgis_aggs_mm.xml.xsl postgis-out.xml > $@
 endif
 
 postgis_comments.sql: ./xsl/postgis_comments.sql.xsl $(XML_INPUTS)
-       $(XSLTPROC) ./xsl/postgis_comments.sql.xsl postgis-out.xml > $@
+       $(XSLTPROC) --novalid ./xsl/postgis_comments.sql.xsl postgis-out.xml > $@
        
 postgis_cheatsheet.html: ./xsl/postgis_cheatsheet.html.xsl $(XML_INPUTS)
-       $(XSLTPROC) ./xsl/postgis_cheatsheet.html.xsl postgis-out.xml > $@
+       $(XSLTPROC) --novalid ./xsl/postgis_cheatsheet.html.xsl postgis-out.xml > $@
        
 raster_comments.sql: ./xsl/raster_comments.sql.xsl $(XML_INPUTS)
        $(XSLTPROC) ./xsl/raster_comments.sql.xsl postgis-out.xml > $@
        
 raster_cheatsheet.html: ./xsl/raster_cheatsheet.html.xsl $(XML_INPUTS)
-       $(XSLTPROC) ./xsl/raster_cheatsheet.html.xsl postgis-out.xml > $@
+       $(XSLTPROC) --novalid ./xsl/raster_cheatsheet.html.xsl postgis-out.xml > $@
        
 topology_comments.sql: ./xsl/topology_comments.sql.xsl $(XML_INPUTS)
-       $(XSLTPROC) ./xsl/topology_comments.sql.xsl postgis-out.xml > $@
+       $(XSLTPROC) --novalid ./xsl/topology_comments.sql.xsl postgis-out.xml > $@
        
 topology_cheatsheet.html: ./xsl/topology_cheatsheet.html.xsl $(XML_INPUTS)
-       $(XSLTPROC) ./xsl/topology_cheatsheet.html.xsl postgis-out.xml > $@
+       $(XSLTPROC) --novalid ./xsl/topology_cheatsheet.html.xsl postgis-out.xml > $@
        
 tiger_geocoder_comments.sql: ./xsl/tiger_geocoder_comments.sql.xsl $(XML_INPUTS)
-       $(XSLTPROC) ./xsl/tiger_geocoder_comments.sql.xsl postgis-out.xml > $@
+       $(XSLTPROC) --novalid ./xsl/tiger_geocoder_comments.sql.xsl postgis-out.xml > $@
        
 tiger_geocoder_cheatsheet.html: ./xsl/tiger_geocoder_cheatsheet.html.xsl $(XML_INPUTS)
-       $(XSLTPROC) ./xsl/tiger_geocoder_cheatsheet.html.xsl postgis-out.xml > $@
+       $(XSLTPROC) --novalid ./xsl/tiger_geocoder_cheatsheet.html.xsl postgis-out.xml > $@
 
 postgis-out.xml: postgis.xml Makefile
        $(PERL) -lpe "s'@@LAST_RELEASE_VERSION@@'${POSTGIS_MAJOR_VERSION}.${POSTGIS_MINOR_VERSION}.${POSTGIS_MICRO_VERSION}'g" $< > $@