summaryrefslogtreecommitdiff
path: root/doc/apibuild.py
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@redhat.com>2012-08-15 09:10:50 +0800
committerDaniel Veillard <veillard@redhat.com>2012-08-15 09:15:30 +0800
commit64d11249a51c1a10e87b51bc1fa633d4605d483e (patch)
tree4240374093ad8424bed6e1769eb7f0c8329f1e0e /doc/apibuild.py
parentd10a72ce8c50344edfc8428692680a038b51480c (diff)
downloadlibxml2-64d11249a51c1a10e87b51bc1fa633d4605d483e.tar.gz
Fix missing xmlsave.h module which was ignored in recent builds
due to "save.h" rule discarding it too
Diffstat (limited to 'doc/apibuild.py')
-rwxr-xr-xdoc/apibuild.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/doc/apibuild.py b/doc/apibuild.py
index c9d51737..f7383e1c 100755
--- a/doc/apibuild.py
+++ b/doc/apibuild.py
@@ -55,7 +55,7 @@ ignored_files = {
"xzlib.h": "Internal API only 2.8.0",
"buf.h": "Internal API only 2.9.0",
"enc.h": "Internal API only 2.9.0",
- "save.h": "Internal API only 2.9.0",
+ "/save.h": "Internal API only 2.9.0",
}
ignored_words = {
@@ -1681,7 +1681,8 @@ class docBuilder:
skip = 0
for excl in self.excludes:
if string.find(file, excl) != -1:
- skip = 1;
+ print "Skipping %s" % file
+ skip = 1
break
if skip == 0:
self.modules[file] = None;
@@ -1690,7 +1691,8 @@ class docBuilder:
skip = 0
for excl in self.excludes:
if string.find(file, excl) != -1:
- skip = 1;
+ print "Skipping %s" % file
+ skip = 1
break
if skip == 0:
self.headers[file] = None;