diff options
author | Nima Talebi <nima@autonomy.net.au> | 2009-05-24 04:09:58 +1000 |
---|---|---|
committer | Nima Talebi <nima@autonomy.net.au> | 2009-05-24 04:09:58 +1000 |
commit | 64d2c31c902439eb0e62471fe97086bf217e7926 (patch) | |
tree | 56668bceed0ac3a4b1715966b03cd346971e792d /src | |
parent | 6ff73a634b11dacfd246ea8bdb6df3e51cda5118 (diff) | |
download | python-dmidecode-64d2c31c902439eb0e62471fe97086bf217e7926.tar.gz python-dmidecode-64d2c31c902439eb0e62471fe97086bf217e7926.tar.xz python-dmidecode-64d2c31c902439eb0e62471fe97086bf217e7926.zip |
Follow-up on recent XML config file rename
Diffstat (limited to 'src')
-rw-r--r-- | src/config.h | 4 | ||||
-rw-r--r-- | src/setup-dbg.py | 2 | ||||
-rw-r--r-- | src/setup.py | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/src/config.h b/src/config.h index 8eb38ad..4fd5f41 100644 --- a/src/config.h +++ b/src/config.h @@ -24,11 +24,11 @@ #endif #ifndef PYTHON_XML_MAP -#define PYTHON_XML_MAP "/usr/share/python-dmidecode/pythonmap.xml" +#define PYTHON_XML_MAP "/usr/share/python-dmidecode/py-map.xml" #endif #ifndef PYTHON_XML_TYPEMAP -#define PYTHON_XML_TYPEMAP "/usr/share/python-dmidecode/typemap.xml" +#define PYTHON_XML_TYPEMAP "/usr/share/python-dmidecode/py-typemap.xml" #endif #endif diff --git a/src/setup-dbg.py b/src/setup-dbg.py index 0b7a2ed..988c3f3 100644 --- a/src/setup-dbg.py +++ b/src/setup-dbg.py @@ -8,7 +8,7 @@ setup( author = "Nima Talebi & David Sommerseth", author_email = "nima@it.net.au, davids@redhat.com", url = "http://projects.autonomy.net.au/python-dmidecode/", - data_files = [ ('share/python-dmidecode-dbg', ['src/pythonmap.xml']) ], + data_files = [ ('share/python-dmidecode-dbg', ['src/py-map.xml', 'src/py-typemap.xml']) ], ext_modules = [ Extension( "dmidecode", diff --git a/src/setup.py b/src/setup.py index f9904af..dde35eb 100644 --- a/src/setup.py +++ b/src/setup.py @@ -8,7 +8,7 @@ setup( author = "Nima Talebi & David Sommerseth", author_email = "nima@it.net.au, davids@redhat.com", url = "http://projects.autonomy.net.au/python-dmidecode/", - data_files = [ ('share/python-dmidecode', ['src/pythonmap.xml']) ], + data_files = [ ('share/python-dmidecode', ['src/py-map.xml', 'src/py-typemap.xml']) ], ext_modules = [ Extension( "dmidecode", |