diff options
author | John Finlay <finlay@src.gnome.org> | 2007-09-06 22:43:10 +0000 |
---|---|---|
committer | John Finlay <finlay@src.gnome.org> | 2007-09-06 22:43:10 +0000 |
commit | 2f24816a0ecae3623600db4350b8352a6178b2b5 (patch) | |
tree | 400e690470dd7fb6a954da5b9cf78e5fc76de225 | |
parent | 755b322cd9f823422aeded2c56a3256c9f1e029c (diff) | |
download | pygobject-2f24816a0ecae3623600db4350b8352a6178b2b5.tar.gz pygobject-2f24816a0ecae3623600db4350b8352a6178b2b5.tar.xz pygobject-2f24816a0ecae3623600db4350b8352a6178b2b5.zip |
Remove DATADIR substitution since it now gets substituted as
* docs/xsl/fixxref.py.in: Remove DATADIR substitution since it now
gets substituted as ${prefix}/share which doesn't work in a Python
script.
svn path=/trunk/; revision=705
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | docs/xsl/fixxref.py.in | 4 |
2 files changed, 6 insertions, 4 deletions
@@ -1,3 +1,9 @@ +2007-09-06 John Finlay <finlay@moeraki.com> + + * docs/xsl/fixxref.py.in: Remove DATADIR substitution since it now + gets substituted as ${prefix}/share which doesn't work in a Python + script. + 2007-08-27 Johan Dahlin <jdahlin@async.com.br> * gobject/propertyhelper.py (property.__metaclass__.__repr__): Avoid diff --git a/docs/xsl/fixxref.py.in b/docs/xsl/fixxref.py.in index b381183..f3287b3 100644 --- a/docs/xsl/fixxref.py.in +++ b/docs/xsl/fixxref.py.in @@ -6,8 +6,6 @@ import os import re import sys -DOCDIR = '@DATADIR@/gtk-doc/html/pygobject' - anchors = {} anchor_pat = re.compile(r'''^\s*<ANCHOR\s+id\s*=\s*"([^"]*)"\s+ href\s*=\s*"([^"]*)"\s*>''', @@ -59,8 +57,6 @@ if __name__ == '__main__': if opt in ('-i', '--index-dir'): index_dirs.append(arg) - index_dirs.append(DOCDIR) - if len(args) != 1: usage() |